Skip to content

Instantly share code, notes, and snippets.

@mweiden
Created April 27, 2018 05:47
Show Gist options
  • Save mweiden/4295b30b0deb43e8c271e76668460666 to your computer and use it in GitHub Desktop.
Save mweiden/4295b30b0deb43e8c271e76668460666 to your computer and use it in GitHub Desktop.
Prompt
function return_value() {
RETVAL=$?
[ $RETVAL -ne 0 ] && echo "\[\e[31m\]${RETVAL}\[\e[m\]" || echo "\[\e[32m\]${RETVAL}\[\e[m\]"
}
export PS1="`return_value` \[\e[34m\]\W\[\e[m\]> "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment