コマンドラインでテーマとホットコーナーの設定を変更する

コマンドラインでテーマとホットコーナーの設定を変更する

変えたい基本テーマの調整そしてホットコーナーコマンドラインでElementary Luna(Ubuntu 12.04「Precise」ベース)を設定します。

これを行うにはどのコマンドを使用できますか? GUIで変更する方法を知っています。このように設定された設定をキャプチャしてコマンドラインコマンドに入力する方法はありますか?

ベストアンサー1

部分的な答えがあります。ここ:

使用するコマンドは「gsettings」で、次のコマンドを使用して使用する実際の設定を見つけることができます。

dconf watch /

端末でも設定を調整します。次のような複数の文を受け取ります。

/org/gnome/desktop/wm/preferences/theme
  'elementary'

/org/pantheon/desktop/gala/behavior/hotcorner-bottomleft
  'custom-command'

/org/pantheon/desktop/gala/behavior/hotcorner-bottomright
  'none'

/org/pantheon/desktop/gala/behavior/hotcorner-custom-command
  'xset dpms force off'

この行を次のコマンドで再フォーマットしたいと思います。

gsettings set org.gnome.desktop.wm.preferences theme 'elementary'
gsettings set org.pantheon.desktop.gala.behavior hotcorner-custom-command 'xset dpms force off'
gsettings set org.pantheon.desktop.gala.behavior hotcorner-bottomleft 'custom-command'

おすすめ記事