Ubuntu14中每个图标对应/usr/share/applications当中
的一个配置文件(文件名后缀为.desktop)。所以要在dash home中添加一个自定义程序启动器,需要在该文件目录下创建对应的配置文件。至于配置文件的语法,参考该目录下的配置文件即可明白。以eclipse为例,方法如下。系统:ubuntu14方法:1. 在/usr/share/applications目录下创建eclipse启动器配置文件cd /usr/share/applications
sudo gedit eclipse.desktop
2.编辑eclipse.desktop并保存。简单的配置示例:(xxx代表路径名)
[Desktop Entry]Version=1.0
Type=ApplicationTerminal=falgeditse
Icon[zh_CN]=/home/xxx/.../eclipse/icon.xpmName[zh_CN]=Eclipse
Exec=/home/xx/Software/eclipse/eclipseComment[zh_CN]=Eclipse
Name=Eclipse
Comment=Eclipse
Icon=/home/xxx/.../eclipse/icon.xpm这样eclipse启动器就添加到dash home中了
要将eclipse添加到launcher中只需在dash中选中程序图标拖动至launcher即可