The Computer Oracle

How can I export my Ubuntu terminal's color scheme for use on other computers?

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 5 Looping

--

Chapters
00:00 How Can I Export My Ubuntu Terminal'S Color Scheme For Use On Other Computers?
00:26 Accepted Answer Score 20
01:01 Thank you

--

Full question
https://superuser.com/questions/241551/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#linux #ubuntu #vim #terminal #colorprofiles

#avk47



ACCEPTED ANSWER

Score 20


On the system with the colors and settings you want, run:

gconftool-2 --dump '/apps/gnome-terminal' > gnome-terminal-conf.xml

then gnome-terminal-conf.xml to your git repo.

Then on the other machines, run

gconftool-2 --load gnome-terminal-conf.xml

to set it.

If you're not sure how to use git, see the git tutorial, and github.com for a popular git hosting service.

Note that this method overwrites all settings. Try running

gconftool-2 -R '/apps/gnome-terminal'

to see all the settings that will be affected.