Skip to content

Instantly share code, notes, and snippets.

@slbelden
Created March 22, 2023 19:26
Show Gist options
  • Save slbelden/66735625067740719e55972c45ac3559 to your computer and use it in GitHub Desktop.
Save slbelden/66735625067740719e55972c45ac3559 to your computer and use it in GitHub Desktop.
My Bash Prompt
#!/usr/bin/env bash
# green if user, red if root
if [ "$EUID" -ne 0 ]; then
PS1='\[\e[0;92m\]\u@\H\[\e[0m\]:\[\e[0;94m\]\w\[\e[0m\]$ '
else
PS1='\[\e[0;91m\]\u@\H\[\e[0m\]:\[\e[0;94m\]\w\[\e[0m\]# '
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment