Ubuntu为.APPImage可执行文件创建桌面快捷方式
本文最后更新于:2022年5月29日 上午
Step 1:赋予权限
首先需要给.APPImage文件赋予执行权限:
1 |
|
Step 2:创建快捷方式
自行下载桌面图标,图片格式任意,如:png,jpg等。
创建快捷方式文件
1
2cd /usr/share/applications/
sudo gedit Motrix.desktop将如下信息复制
1
2
3
4
5
6
7[Desktop Entry]
Type=Application
Name=Motrix
GenericName=Motrix
Comment=Motrix
Exec=/home/yun/Downloads/Motrix.AppImage
Icon=/home/yun/Pictures/appIcon/Motrix.png其中,Name为快捷方式名称, Exec为就是AppImage可执行程序所在的文件路径, Icon为图标所在路径。
所有用户添加执行权限
1
chmod +x /usr/share/applications/Motrix.desktop
可以拷贝到需要的地方
1
cp /usr/share/applications/Motrix.desktop /home/yourname/Desktop
END.
Ubuntu为.APPImage可执行文件创建桌面快捷方式
https://kevinloongc.github.io/posts/d11f11cc.html