web-dev-qa-db-ja.com

Guakeの設定をバックアップする方法

私は自分のニーズに合わせてguakeを構成するために多くの作業をしましたが、これらの変更をエクスポートする方法を見つけることができません(gnome-terminalのプロファイルに関連していないようです)。 「guakeプロファイル」をバックアップし、別のPCに復元する方法はありますか?

幸い、もうdconfの専門家である必要はありません。

guake --restore-preferences ~/myguakeprefs 
guake --save-preferences ~/myguakeprefs
4
Lucas Alonso

アップデート2019

[〜#〜]古い[〜#〜]--restore-preferences--save-preferencesを含む新しい回答を確認してください

Gconf /apps/guakeおよび/schemas/apps/guakeパスを再帰的にバックアップします。

バックアップ

gconftool-2 --dump /apps/guake > apps-guake.xml
gconftool-2 --dump /schemas/apps/guake > schemas-apps-guake.xml

戻す

gconftool-2 --load apps-guake.xml
gconftool-2 --load schemas-apps-guake.xml

さらに、ディレクトリ~/.gconf/apps/guakeをバックアップすれば実行できます。

詳細 ここ または 問題292 および 問題32

1
Leo Gallucci