#デフォルト値が間違ってるかも
ログイン画面で使用されるテーマの設定は、gdmユーザーのgconfに記録されている。
| キー | | 説明 | デフォルト値 (Ubuntu 10.04) | | /desktop/gnome/interface/gtk_theme | string | コントロールのテーマ | Ambiance | | /desktop/gnome/interface/icon_theme | string | アイコンテーマ | LoginIcons | | /apps/gdm/simple-greeter/logo_icon_name | string | ロゴ | computer | | /desktop/gnome/interface/font_name | string | フォント | Sans 10 | | /desktop/gnome/background/picture_filename | string | 背景 | /usr/share/backgrounds/warty-final-ubuntu.png |
gksu -u gdm -- gconftool-2 --set --type string /desktop/gnome/interface/gtk_theme Ambiance gksu -u gdm -- gconftool-2 --set --type string /desktop/gnome/interface/icon_theme LoginIcons
gksu -u gdm -- gconftool-2 --set --type string /desktop/gnome/background/picture_filename /usr/share/backgrounds/warty-final-ubuntu.png
gksu -u gdm -- gconftool-2 --set --type string /desktop/gnome/interface/icon_theme LoginIcons gksu -u gdm -- gconftool-2 --set --type string /apps/gdm/simple-greeter/logo_icon_name computer
|