Linux - How to configure terminal, Change color settings in terminal

How to configure terminal


To view your current setting of your terminal use the below command
  # 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

The topic on Linux - How to configure terminal is posted by - Khan

Hope you have enjoyed, Linux - How to configure terminalThanks for your time

Tech Bluff