Skip to content

Instantly share code, notes, and snippets.

@mt3o
Created February 2, 2014 22:25
Show Gist options
  • Save mt3o/8775911 to your computer and use it in GitHub Desktop.
Save mt3o/8775911 to your computer and use it in GitHub Desktop.
Bash prompt
Color_Off='\e[0m' # Text Reset
# Regular Colors
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue
Purple='\e[0;35m' # Purple
Cyan='\e[0;36m' # Cyan
White='\e[0;37m' # White
# Bold
BBlack='\e[1;30m' # Black
BRed='\e[1;31m' # Red
BGreen='\e[1;32m' # Green
BYellow='\e[1;33m' # Yellow
BBlue='\e[1;34m' # Blue
BPurple='\e[1;35m' # Purple
BCyan='\e[1;36m' # Cyan
BWhite='\e[1;37m' # White
# Background
On_Black='\e[40m' # Black
On_Red='\e[41m' # Red
On_Green='\e[42m' # Green
On_Yellow='\e[43m' # Yellow
On_Blue='\e[44m' # Blue
On_Purple='\e[45m' # Purple
On_Cyan='\e[46m' # Cyan
On_White='\e[47m' # White
# High Intensity
IBlack='\e[0;90m' # Black
IRed='\e[0;91m' # Red
IGreen='\e[0;92m' # Green
IYellow='\e[0;93m' # Yellow
IBlue='\e[0;94m' # Blue
IPurple='\e[0;95m' # Purple
ICyan='\e[0;96m' # Cyan
IWhite='\e[0;97m' # White
# Bold High Intensity
BIBlack='\e[1;90m' # Black
BIRed='\e[1;91m' # Red
BIGreen='\e[1;92m' # Green
BIYellow='\e[1;93m' # Yellow
BIBlue='\e[1;94m' # Blue
BIPurple='\e[1;95m' # Purple
BICyan='\e[1;96m' # Cyan
BIWhite='\e[1;97m' # White
Time24h='\t'
PathShort='\W'
PathLong='\w'
LastCommandIfFalse='$([[ $? != 0 ]] && echo "\e[1;91m\342\234\227")'
LastCommandIfTrue='$([[ $? != 0 ]] && echo "\e[1;92mv")'
export PS1='\n '$LastCommandIfFalse$LastCommandIfTrue' '$Color_Off'['$Time24h'] '$Color_Off'\
\[\033[01;32m\]\u@\h \n\
$(git branch &>/dev/null;\
if [ $? -eq 0 ]; then \
echo "$(echo `git status` | grep "nothing to commit" > /dev/null 2>&1;\
if [ "$?" -eq "0" ]; then \
# @4 - Clean repository - nothing to commit
echo "'$Green'"$(__git_ps1 "(%s)"); \
else \
# @5 - Changes to working tree
echo "'$IRed'"$(__git_ps1 "{%s}"); \
fi) "; \
else \
# @2 - Prompt when not in GIT repo
echo " "; \
fi)'\
'$(echo "'$BIBlue$PathLong$Color_Off' \$ ")'
@mt3o
Copy link
Author

mt3o commented Feb 2, 2014

demo

demo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment