问题描述
\\n
Possible Duplicate:
\\nHow can I create launchers on my desktop?
\\nHow to add a shell script to launcher as shortcut\\n
我使用自定义 bash 脚本打开我最喜欢的 IDE (PhpStorm)。我想将脚本添加到 Unity 启动器中。
我以为我可以通过单击“保留在启动器中”选项来添加它,果然,在我关闭应用程序后,该图标仍保留在启动器上。但单击该图标并不会重新打开 IDE – 启动器只是坐在那里闪烁。当我重新登录时,启动器图标消失了。
有人知道我如何才能完成这项工作吗?
最佳方法
我为 Gnome 屏幕保护程序创建了一个,并将其保存到:~/.local/share/applications/
您可能需要创建此目录:
mkdir ~/.local/share/applications (if required)
屏幕保护程序.桌面
[Desktop Entry]
Name=Activate Screensaver
Comment=
Exec=gnome-screensaver-command -a
Icon=screensaver
Terminal=false
Type=Application
StartupNotify=true
然后只需在 Dash 中搜索 ‘Name’,并将图标移动到启动器。
次佳方法
使用
gnome-desktop-item-edit ~/Desktop/ --create-new
在终端中创建桌面启动器。我已经在 Ubuntu 12.04 中尝试过了,它可以工作。
实际上,只有安装了 gnome-shell 才可以使用。但我尝试过,发现即使只有gnome-desktop-item-edit
,仍然可以工作。