Configure your Terminal in Linux
by Vinoth[ Edit ] 2009-12-17 19:33:08
We can configure our terminal in linux
Use the below command to configure it
To View your current display setting
echo $PS1
To Change the current Display
$ export PS1="\e[0;34m[\u@\h \W]\$ \e[m "
Here
\e [Start color scheme
x;ym Color pair to use
\u user
\h host
\W Current Work Station
\e[m Stop color scheme
Color Code (x;y)
Black 0;30
Blue 0;34
Green 0;32
Cyan 0;36
Red 0;31
Purple 0;35
Brown 0;33
Blue 0;34
Green 0;32
Cyan 0;36
Red 0;31
Purple 0;35
Brown 0;33