ubuntu如何将sublime text在桌面创建快捷方式
在 /usr/share/applications 目录下增加 sublime.desktop 文件,注意权限!
sudo vim /usr/share/applications/sublime_test.desktop
添加如下内容,然后保存。
[Desktop Entry]
Name=Sublime Text 3
Type=Application
Terminal=false
Comment=Edit text files
Exec=/home/xxx/software/SublimeText2/sublime_text %F
Icon=/home/xxx/software/SublimeText2/Icon/48x48/sublime_text.png
直接在Dash中检索sublime 然后将图标拖到 Launcher 上即可。
注意:
配置信息中路径不要使用引号(最好不要有空格)。
复制以上代码时注意每行末尾不要有空格。
创建Phpstorm快捷方式方法类似创建sublime text3的方式:
sudo vim /usr/share/applications/phpstorm.desktop
只是内容如下:
[Desktop Entry]
Encoding=UTF-8
Name=phpstorm IDE
Comment=
Exec=/bin/sh "/home/xxx/software/PhpStorm/bin/phpstorm.sh"
Icon=/home/xxx/software/PhpStorm/bin/webide.png
Categories=Application;Development;Java;IDE
Version=1.0
Type=Application
Terminal=0