如何在 LxPanel 启动器(在 Lubuntu 中)中添加“root”权限?我想要 Synaptic 启动器,但 Synaptic 需要 root 权限。
有谁知道它是怎么做到的吗?
答案1
无需安装任何额外的软件包即可实现这一点。
- 将您的应用程序(突触)添加到面板
- 打开
lxterminal
并导航至~/.config/lxpanel/Lubuntu/panels
- 输入以下内容打开文件
leafpad panel
- 找到线
id=/usr/share/applications/synaptic.desktop
- 将此行更改为
id=synaptic.desktop
- 保存并退出 leafpad
- 创建本地应用程序菜单文件夹
mkdir -p ~/.local/share/applications
- 复制主 synaptic.desktop 文件:
cp /usr/share/applications/synaptic.desktop ~/.local/share/applications
- 编辑新复制的文件:
leafpad ~/.local/share/applications/synaptic.desktop
- 找到线
Exec=synaptic-pkexec
- 将其更改为
Exec=gksudo synaptic-pkexec
- 保存,退出 leafpad,注销并登录。
答案2
图形选项 -
尝试LxMenu编辑器添加自定义命令gksu nautilus
或gksu synaptic
Sereenshots(我没有直接添加它们,因为它们太大了)
http://forum.lxde.org/download/file.php?id=262
http://forum.lxde.org/download/file.php?id=263
安装依赖项
sudo apt-get install lxshortcut zenity
LxMenuEditor 本身是一个脚本,将其保存在 ~/bin 中
mkdir ~/bin
cd bin
wget http://opendesktop.org/CONTENT/content-files/138298-LxMenuEditor
mv 138298-LxMenuEditor LxMenuEditor
chmod a+x LxMenuEditor
手动运行它,~/bin/LxMenuEditor
一旦您注销并重新登录,~/bin 将出现在您的路径上,您可以将其作为菜单项输入,也可以打开终端并输入LxMenuEditor
您的另一个选择是手动编辑菜单或编写启动器。编写启动器并不难,它们位于/usr/share/applications
*.desktop 文件中。您可以使用大多数 .desktop 作为模板,只需设置一个图标并用作gksu synaptic
操作/命令即可。
有关详细信息,请参阅
https://wiki.archlinux.org/index.php/LXDE#Application_Menu_Editing