我在配置guake以满足我的需要方面做了很多工作,但我找不到导出这些更改的方法(似乎与gnome终端的配置文件无关)。有没有办法备份我的"guake配置文件“,然后在另一台pc中恢复它?
发布于 2019-08-08 13:28:50
幸运的是,您不再需要成为dconf方面的专家了:
guake --restore-preferences ~/myguakeprefs
guake --save-preferences ~/myguakeprefs发布于 2016-09-18 13:14:52
过时了,请检查包括--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.xmlgconftool-2 --load apps-guake.xml
gconftool-2 --load schemas-apps-guake.xml另外,备份目录~/.gconf/apps/guake应该可以做到这一点。
https://askubuntu.com/questions/468445
复制相似问题