web-dev-qa-db-ja.com

Netbook EditionのGnomeパネルにシステムモニターアプレットを追加するにはどうすればよいですか?

Ubuntu Netbook EditionのGnomeパネルにシステムモニターアプレットを追加する必要があります。私のセットアップは次のとおりです。Unityの代わりにNetbook Editionインターフェイスがインストールされた10.10(10.04からアップグレード)。

Netbook Editionインターフェースをシンボリックリンクして、Gnomeセッションモードで起動する方法を試しましたが、パネルはカスタマイズできませんでした。 10.4よりも10.10の方がパネルがロックされているようです。

私は、パネルがまだ設定ファイルまたはgnome-configのどこかにアプレット構成を保持していると思います。だから、設定を編集してアプレットを追加することは可能だと思います。アプレットを追加するために変更する必要があるファイル、コマンド、構成キーを知っている人はいますか?または、レンダリングするプログラムを実行するだけでアプレットを起動できますか?

4
katrmr

スクリプトがあります(/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  

次のコマンドは、System Monitorアプレットを画面の左側から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
2
Isaiah