如何导出我的 Ubuntu 终端的配色方案以供其他计算机使用?
我已经设置了我喜欢的配色方案,我想将其放在 git repo 中,以便从其他机器轻松加载。有什么策略可以让它在其他终端应用程序(例如 Konsole)中也能工作吗?
答案1
在具有所需颜色和设置的系统上,运行:
gconftool-2 --dump '/apps/gnome-terminal' > gnome-terminal-conf.xml
然后gnome-terminal-conf.xml
到你的git
仓库。
然后在其他机器上运行
gconftool-2 --load gnome-terminal-conf.xml
进行设置。
如果你不确定如何使用git
,请参阅git 教程, 和github.com用于流行的 git 托管服务。
请注意,此方法会覆盖全部设置。尝试运行
gconftool-2 -R '/apps/gnome-terminal'
查看所有受影响的设置。