Terminal color customization on Ubuntu
I changed my terminal's look to this (sublime-like):
I'm currently using terminator terminal on Ubuntu 13.04. It should also work on other terminals.
On terminator preferences:
Profiles->Colors->Pallete->Custom
Change the colors to:
Black: 0, 0, 0 Red: 229, 34, 34 Green: 166, 227, 45 Yellow: 252, 149, 30 Blue: 196, 141, 255 Magenta: 250, 37, 115 Cyan: 103, 217, 240 White: 242, 242, 242
Profiles->Background->Transparent Background->0.9
Edit .bashrc profile (should be in ~/.bashrc):
If you didn't already, uncomment:
force_color_prompt=yes
Locate the line with the PS1 variable: replace
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;35m\]\u\[\033[00m\] @ \[\033[01;34m\]\h\[\033[00;37m\] : \[\033[01;33m\]\w\n\[\033[01;32m\]\$\[\033[00;00m\] '
Restart terminal or:
source ~/.bashrc
Done!
Inspired on this post:
http://stevelosh.com/blog/2009/03/candy-colored-terminal/














