在Linux(Luna)下向Launch启动器中添加图标
记录下在Luna下向Launch中添加图标的步骤,以供以后参考,这里我以加入eclipse图标为例:
- 首先,我们来创建一个desktop文件(Luna中到启动器Launch可以看作是Ubuntu中到桌面)
$ scratch-text-editor eclipse.desktop
- 将以下代码写入文件
[Desktop Entry] Name=Eclipse Type=Application Exec=eclipse Terminal=false Icon=eclipse Comment=Integrated Development Environment NoDisplay=false Categories=Development;IDE; Name[en]=Eclipse
- 然后使用以下命令让文件生效
desktop-file-install eclipse.desktop
- 然后在
/usr/local/bin
目录下生成一个系统链接
cd /usr/local/bin ln -s /opt/eclipse/eclipse
-
最后,往启动器里添加eclipse图标
cp /opt/eclipse/icon.xpm /usr/share/pixmaps/eclipse.xpm