Software-Installation
Lubuntu - 如何將軟體添加到菜單
我是 Lubuntu 的新手,所以我下載了一個像 LightTable 這樣的編輯器,它只能使用命令行中的這個命令執行
./LightTable
那麼如何在我的菜單上添加這個軟體呢?
您可以例如:檢查文件夾中的內容:
ls -la /usr/share/applications/
為其他文本編輯器找到類似的條目,例如:
# cat /usr/share/applications/sublime.desktop [Desktop Entry] Encoding=UTF-8 Name=Sublime Text Comment=Sublime Text 2 Exec=sublime_text Icon=/opt/sublime/Icon/256x256/sublime_text.png Terminal=false Type=Application StartupNotify=true Categories=GNOME;GTK;Development;TextEditor;
根據您的要求複製和修復內容,例如:
cp -p /usr/share/applications/sublime.desktop /usr/share/applications/lighttable.desktop
例如。:
# cat /usr/share/applications/lighttable.desktop [Desktop Entry] Encoding=UTF-8 Name=Light Table Comment=Light Table Exec=/path/to/your/executable/script/LightTable Icon=/path/to/your/icon/Light_Table.png Terminal=false Type=Application StartupNotify=true Categories=GNOME;GTK;Development;TextEditor;
注意:確保您的 GUI 使用者對
LightTable
腳本具有執行權限