Skip to content

Instantly share code, notes, and snippets.

@hertzg
Created March 9, 2015 12:33
Show Gist options
  • Select an option

  • Save hertzg/eff84ecda41025e8289c to your computer and use it in GitHub Desktop.

Select an option

Save hertzg/eff84ecda41025e8289c to your computer and use it in GitHub Desktop.
PS1
# set a fancy prompt (non-color, overwrite the one in /etc/profile)
if [[ ${EUID} == 0 ]] ; then
PS1='\[\033[01m\][ \[\033[01;31m\]\u@\h \[\033[00m\]\[\033[01m\]] \[\033[01;32m\]\w\[\033[00m\]\n\[\033[01;31m\]#\[\033[00m\] '
else
PS1='\[\033[01m\][ \[\033[01;34m\]\u@\h \[\033[00m\]\[\033[01m\]] \[\033[01;32m\]\w\[\033[00m\]\n\[\033[01;34m\]$\[\033[00m\] '
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment