我花了很多功夫来配置 guake 以满足我的需求,但我找不到导出这些更改的方法(似乎与 gnome-terminal 的配置文件无关)。有没有办法备份我的“guake 配置文件”,然后在另一台电脑上恢复它?
答案1
幸运的是,您不再需要成为 dconf 专家:
guake --restore-preferences ~/myguakeprefs
guake --save-preferences ~/myguakeprefs
答案2
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
就可以了。