将 exec 添加到“开始菜单”和 CLI

将 exec 添加到“开始菜单”和 CLI

我刚刚下载了 Sublime Text,我使用 tar 将其解压,软件就在里面,无需像安装包或其他东西那样安装。我想通过在终端中输入“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_3/sublime_text %F
Terminal=false
MimeType=text/plain;
Icon=sublime-text
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;

sublime_text 程序位于以下路径 /opt/sublime_text_3

谢谢!

相关内容