如何讓我的應用程式出現在應用程式清單中?

如何讓我的應用程式出現在應用程式清單中?

我建立了一個 .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=

相關內容