创建一个新的.desktop文件。
在文件中填写必要的信息,如程序名、执行文件路径、图标等。
保存文件,并确保它有可执行权限。
示例.desktop文件内容:
[Desktop Entry]
Version=1.0
Type=Application
Name=MyProgram
Comment=My Program Short Description
Exec=/path/to/my/program
Icon=/path/to/my/icon.png
Terminal=false
Categories=Utility;
将上面的内容保存到/usr/share/applications/目录下的myprogram.desktop,或者用户的~/.local/share/applications/目录下,并给予执行权限:
chmod +x ~/.local/share/applications/myprogram.desktop
此时show applications 里面就有了你的应用图标,可以点击允许。