Skip to content

Instantly share code, notes, and snippets.

@awesomebjt
Created July 25, 2021 20:52
Show Gist options
  • Save awesomebjt/c2557cb4cb2b2fe757ab9aeb61e38a19 to your computer and use it in GitHub Desktop.
Save awesomebjt/c2557cb4cb2b2fe757ab9aeb61e38a19 to your computer and use it in GitHub Desktop.
praxeo custom Arch Linux bash prompt coloring in bold, with teal username and white path
# Put this into /etc/bash.bashrc
if [[ ${EUID} == 0 ]] ; then
PS1='\[\033[01;31m\]\u\[\033[0;37m\]@\h \[\033[01;37m\]\W \$ \[\033[00m\]'
else
PS1='\[\033[01;36m\]\u\[\033[0;37m\]@\h \[\033[01;37m\]\W \$ \[\033[00m\]'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment