如何让我的应用程序出现在应用程序列表中?

如何让我的应用程序出现在应用程序列表中?

我创建了一个 .deb 包,将文件复制到该/opt/MyAppName目录。但是,它没有出现在应用程序列表中,我不确定如何实现这一点。

在此输入图像描述

如何让我的应用程序出现在此列表中?我希望在我发布它时,为所有使用安装 .deb 的用户显示此信息。

答案1

您必须创建一个your_application.desktop文件,然后复制到/usr/share/applications/.以下是.desktop我最近用来创建的示例文件sublime_text.desktop

[Desktop Entry]
Version=1.0
Type=Application
Name=Sublime Text
GenericName=Text Editor
Comment=Sophisticated text editor for code, markup and prose
Exec=/opt/sublime_text/sublime_text %F
Terminal=false
MimeType=text/plain;
Icon=/opt/sublime_text/Icon/128x128/sublime-text.png
Categories=TextEditor;Development;
StartupNotify=true
Actions=Window;Document;

[Desktop Action Window]
Name=New Window
Exec=/opt/sublime_text/sublime_text -n
OnlyShowIn=Unity;

[Desktop Action Document]
Name=New File
Exec=/opt/sublime_text/sublime_text --command new_file
OnlyShowIn=Unity;

关注Exec=Icon=

相关内容