导出 Ubuntu 16.04 终端配置文件

导出 Ubuntu 16.04 终端配置文件

如何导出我的 Ubuntu 16.04 Gnome 终端配置文件?

该文件夹~/.gconf是空的。

答案1

您需要dconf导出和导入您的个人资料设置。请参阅这个答案有关详细信息(简要摘要:使用dconf dump /org/gnome/terminal/legacy/profiles:/ | grep -e "\[\:\|visible-name"列出已安装的配置文件,然后通过dconf dump /org/gnome/terminal/legacy/profiles:/:xx-xx-xx-xx/ > sample.dconf和导入/导出它们dconf load /org/gnome/terminal/legacy/profiles:/:xx-xx-xx-xx/ < sample.dconf)。

答案2

我已将用于导入/导出默认配置文件的命令包装到可立即使用的脚本中,您可以在此处获取它:https://github.com/yktoo/yktools/blob/master/gnome-terminal-profile

使用方法很简单:

gnome-terminal-profile export /path/to/file
gnome-terminal-profile import /path/to/file

相关内容