如何在 Xubuntu 中添加图标?

如何在 Xubuntu 中添加图标?

我之前运行的是 Ubuntu 18.04,刚刚转换到 Xubuntu。有没有办法在桌面添加图标?我想要几个图标来启动程序。

答案1

右键单击桌面并Create Launcher从上下文菜单中选择创建自定义启动器。

您还可以通过右键单击从应用程序菜单中选择任何程序,然后Add to Desktop从上下文菜单中选择。

答案2

使用终端创建桌面快捷方式

您可以按照以下方式进行:

ln -s /usr/share/applications/google-chrome.desktop /home/user/Desktop/

但它显示一条警告:Untrusted application launcher

另外,您可以通过在桌面上创建 app.desktop 文件来创建它,文件内容如下:

vim.tiny ~/Desktop/firefox.desktop

[Desktop Entry]
Version=1.0
Type=Application
Name=Firefox
Comment=Browser
Exec=firefox
Icon=firefox
Path=/home/user/.firefox
Terminal=false
StartupNotify=false

chmod +x ~/Desktop/firefox.desktop

相关内容