bodhi.zazen's bashrc configuration file. Review this file, modify it as you wish, and save it in ~\.bashrc
# bodhi.zazen's .bashrc version 0.3.1
# Note: This file uses 'most' and 'display-dhammapada'
# most is a replacement for more or less and displays the man pages in color
# display-dhammapada is a fortune like application that displays buddhist quotes
# to install these use
# sudo apt-get -y install most display-dhammapada
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
source $HOME/.envrc
# NEW. FANCY PROMPT
if [[ $EUID == 0 ]] ; then
PS1='\[\033[01;31m\]\u\[\033[01;30m\]@\[\033[01;34m\]\h\[\033[01;30m\]:\[\033[01;34m\]\w\[\033[00m\]\$' #RED
else
PS1='\[\033[01;32m\]\u\[\033[01;30m\]@\[\033[01;34m\]\h\[\033[01;30m\]:\[\033[01;34m\]\w\[\033[00m\]\$' #Green
# PS1='\[\033[01;34m\]\u\[\033[01;30m\]@\[\033[01;34m\]\h\[\033[01;30m\]:\[\033[01;34m\]\w\[\033[00m\]\$' #Blue
fi
cd ~
# Note: This file uses 'most' and 'display-dhammapada'
# most is a replacement for more or less and displays the man pages in color
# display-dhammapada is a fortune like application that displays buddhist quotes
# to install these use
# sudo apt-get -y install most display-dhammapada
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
source $HOME/.envrc
# NEW. FANCY PROMPT
if [[ $EUID == 0 ]] ; then
PS1='\[\033[01;31m\]\u\[\033[01;30m\]@\[\033[01;34m\]\h\[\033[01;30m\]:\[\033[01;34m\]\w\[\033[00m\]\$' #RED
else
PS1='\[\033[01;32m\]\u\[\033[01;30m\]@\[\033[01;34m\]\h\[\033[01;30m\]:\[\033[01;34m\]\w\[\033[00m\]\$' #Green
# PS1='\[\033[01;34m\]\u\[\033[01;30m\]@\[\033[01;34m\]\h\[\033[01;30m\]:\[\033[01;34m\]\w\[\033[00m\]\$' #Blue
fi
cd ~