如何将系统监视器小程序添加到 Netbook Edition 的 Gnome 面板?

如何将系统监视器小程序添加到 Netbook Edition 的 Gnome 面板?

我需要将系统监视器小程序添加到 Ubuntu Netbook Edition 中的 Gnome 面板。我的设置如下:10.10(从 10.04 升级)安装了 Netbook Edition 界面而不是 Unity。

我尝试过符号链接 Netbook Edition 界面的方法,以便它可以在 Gnome 会话模式下启动,但面板无论如何都无法自定义。似乎 10.10 中的面板比 10.04 中的面板更受锁定。

我认为面板仍将其小程序配置保存在某个地方,要么在配置文件中,要么在 gnome-config 中。所以我认为可以通过编辑配置来添加小程序。有人知道添加小程序需要更改哪些文件、命令和配置键吗?或者我是否可以通过运行呈现它的程序来启动小程序?

答案1

有一个脚本 ( /usr/lib/gnome-panel/gnome-panel-add) 用于将小程序和启动器添加到 gnome-panel:

john@doe:~$ /usr/lib/gnome-panel/gnome-panel-add -h

Usage: gnome-panel-add [options]

Options:  
  -h, --help           show this help message and exit  
  --applet=APPLET      Applet to add  
  --copy-launcher      Copy the launcher to the user directory  
  --launcher=LAUNCHER  Launcher to add  
  --panel=TOPLEVEL     Identifier of the panel where to add the applet  
  --position=POSITION  Position on the panel where to add the applet  
  --right-stick        Make the applet right-aligned on the panel  

以下命令将添加系统监视器小程序到顶部面板,距离屏幕左侧 500px:

/usr/lib/gnome-panel/gnome-panel-add --applet=OAFIID:GNOME_MultiLoadApplet --panel=top_panel_screen0 --position=500

笔记:如果出现top_panel_screen0 is not an existing panel identifier错误,请 top_panel_screen0用以下命令列出的面板标识符之一替换:

gconftool --all-dirs /apps/panel/toplevels

相关内容