Skip to content

Instantly share code, notes, and snippets.

@garrettr
Created July 21, 2012 21:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garrettr/3157324 to your computer and use it in GitHub Desktop.
Save garrettr/3157324 to your computer and use it in GitHub Desktop.
Bash Prompt
# Bold green prompt
# ~ >
export PS1="\[\e[1;32m\]\W > \[\e[m\]"
# Officially the coolest prompt ever (inverted black-on-green \W)
export PS1="\[\e[7;32m\]\W \$\[\e[m\] "
# for more: http://jamiedubs.com/ps1-collection-customize-your-bash-prompt/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment