问题描述
我的问题很简单。有没有快速简便的方法来创建快捷方式的.desktop文件?
例如,我认为您可以右键单击并在Linux Mint中创建.desktop快捷方式。
我已经知道如何从这样的文本编辑器创建它们:
[Desktop Entry] Type=Application
Name=Eclipse Comment=Eclipse IDE
Icon=/home/jahedev/dev/eclipse-std/icon.png
Exec=/home/jahedev/dev/eclipse-std/eclipse
Terminal=false
Categories=Development;IDE;Java;
StartupWMClass=Eclipse
Name[en_US]=Eclipse
那么有没有可以做到这一点的GUI应用程序?
最佳解决方案
看看Arronax:
它可作为Nautilus的插件和独立应用程序使用。
要安装,请打开终端并键入:
sudo add-apt-repository ppa:diesch/testing
sudo apt-get update
sudo apt-get install arronax
nautilus -q
次佳解决方案
您可以尝试alacarte (Main Menu):
Alacarte is an easy-to-use menu editor for GNOME that can add and edit new entries and menus. It works with the freedesktop.org menu specification and should work with any desktop environment that uses the spec.
默认情况下,未安装。从终端,您可以使用以下命令安装它:
sudo apt-get install alacarte
第三种解决方案
在Ubuntu 12.04或14.04上有gnome-desktop-item-edit
,它是gnome-panel
软件包的一部分:
您可以使用以下脚本将其集成到文件管理器中:
#!/bin/bash
gnome-desktop-item-edit --create-new ~/.local/share/applications
Nautilus脚本的通用安装说明:How can I install a Nautilus script?
第四种方案
对于Xfce桌面环境,有exo-desktop-item-edit
,它的工作方式类似于它的Gnome对应物:
exo-desktop-item-edit --create-new ~/.local/share/applications