ubuntu/deepin制作快捷启动图标的方法
程序员文章站
2022-05-12 11:45:27
默认情况下系统所有的快捷方式放在/usr/share/applications,打开该目录会看到大量的.desktop文件,每个文件便是一个快捷方式。
有时我们需...
默认情况下系统所有的快捷方式放在/usr/share/applications,打开该目录会看到大量的.desktop文件,每个文件便是一个快捷方式。
有时我们需要自己安装软件,然后添加快捷方式。文件的主要结构为:
[desktop entry] name=android studio comment=this is android studio exec=/home/xiaobu/developmenttools/androidstudio/bin/studio.sh icon=/home/xiaobu/developmenttools/androidstudio/bin/studio.png terminal=false type=application categories=application;
其中name是快捷方式名;comment:注释;exec(这个很关键):启动脚本,要将完整路径写上去。icon:图标的文件名及路径。terminal:是否以终端启动。
如要放到桌面上可将文件复制到主目录\桌面文件夹内。
以上所述是小编给大家介绍的ubuntu/deepin制作快捷启动图标的方法,希望对大家有所帮助