如何导出Ubuntu终端的配色方案以在其他计算机上使用?


13

如何导出Ubuntu终端的配色方案以在其他计算机上使用?

我已经设置了自己喜欢的配色方案,并且希望将其放在git repo中,以便从其他计算机轻松加载。有什么策略可以使其在其他终端应用程序(例如Konsole)中运行吗?


SCM用于终端颜色配置文件?我永远都不会想!您还可以使用Ubuntu One或Dropbox在PC和朋友之间共享文件。
反转

Answers:


19

在具有所需颜色和设置的系统上,运行:

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'

查看将受到影响的所有设置。


2
这不再起作用了。请检查我的问题,看看是否有任何解决方案。谢谢!
尼卡比曹
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.