Skip to content

Instantly share code, notes, and snippets.

@giuliandrimba
Created July 3, 2012 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giuliandrimba/3041157 to your computer and use it in GitHub Desktop.
Save giuliandrimba/3041157 to your computer and use it in GitHub Desktop.
SHELL: Terminal Colors
RED="\[\033[0;31m\]"
YELLOW="\[\033[0;33m\]"
GREEN="\[\033[0;32m\]"
PURPLE="\[\033[0;35m\]"
BROWN="\[\033[0;33m\]"
BLUE="\[\033[0;34m\]"
CYAN="\[\033[0;36m\]"
LIGHT_RED="\[\033[1;31m\]"
LIGHT_GRAY="\[\033[0;37m\]"
WHITE="\[\033[1;37m\]"
LIGHT_GREEN="\[\033[1;32m\]"
LIGHT_BLUE="\[\033[1;34m\]"
LIGHT_PURPLE="\[\033[1;35m\]"
LIGHT_CYAN="\[\033[1;36m\]"
PS1="$LIGHT_GRAY\$(date +%H:%M) $LIGHT_CYAN \$ \w$GREEN \$(parse_git_branch)$WHITE\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment