Linux-Mint
如何讓我的應用程序出現在應用程序列表中?
我創建了一個將文件複製到
/opt/MyAppName
目錄的 .deb 包。但是,它沒有出現在應用程序列表中,我不確定如何做到這一點。如何讓我的應用出現在此列表中?我希望在我發布它時為所有使用安裝 .deb 的使用者顯示此內容。
您必須創建一個
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=