# Paste either the Red or Yellow color at the end of /root/.bashrc # Don't enable more than one code. Copy and paste the code you like. # You can disable the lines by number sign # at the beginning of the code, or by simply deleting them. # Red Color red=$(tput setaf 1) green=$(tput setaf 2) yellow=$(tput setaf 3) blue=$(tput setaf 4) reset=$(tput sgr0) PS1='\[$red\]\u\[$reset\]@\[$red\]\h\[$reset\]:\[$blue\]\w\[$reset\]\$ ' # Yellow color red=$(tput setaf 1) green=$(tput setaf 2) yellow=$(tput setaf 3) blue=$(tput setaf 4) reset=$(tput sgr0) PS1='\[$yellow\]\u\[$reset\]@\[$yellow\]\h\[$reset\]:\[$blue\]\w\[$reset\]\$ ' # Green color used for regular Users red=$(tput setaf 1) green=$(tput setaf 2) yellow=$(tput setaf 3) blue=$(tput setaf 4) reset=$(tput sgr0) PS1='\[$green\]\u\[$reset\]@\[$green\]\h\[$reset\]:\[$blue\]\w\[$reset\]\$ '