Skip to content

Instantly share code, notes, and snippets.

@4np
Last active August 4, 2018 10:42
Show Gist options
  • Save 4np/4621874 to your computer and use it in GitHub Desktop.
Save 4np/4621874 to your computer and use it in GitHub Desktop.
my favorite prompt
# change prompt
LOGIN_NAME=$(whoami)
if [[ ${EUID} == 0 ]] ; then
if [ ${#LOGIN_NAME} -gt 20 ]; then
PS1='\[\033[01;35m\]${SCREENTITLE}\[\033[01;34m\]\w \$\[\033[00m\] '
else
PS1='\[\033[01;36m\]${SCREENTITLE}\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] '
fi
else
if [ ${#LOGIN_NAME} -gt 20 ]; then
PS1='\[\033[01;35m\]${SCREENTITLE}\[\033[01;34m\]\w \$\[\033[00m\] '
else
PS1='\[\033[01;36m\]${SCREENTITLE}\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
fi
fi
# change sudo prompt
if [ ${#LOGIN_NAME} -gt 20 ]; then
export SUDO_PS1='\[\033[01;32m\]${SCREENTITLE}\[\033[01;31m\]\u\[\033[01;34m\] \W \$\[\033[00m\] '
else
export SUDO_PS1='\[\033[01;36m\]${SCREENTITLE}\[\033[01;31m\]\u@\h\[\033[01;34m\] \W \$\[\033[00m\] '
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment