Skip to content

Instantly share code, notes, and snippets.

@gschueler
Created June 4, 2014 18:51
Show Gist options
  • Select an option

  • Save gschueler/65475a78a21137c54bde to your computer and use it in GitHub Desktop.

Select an option

Save gschueler/65475a78a21137c54bde to your computer and use it in GitHub Desktop.
🍺 or πŸ’©
function prompt_func() {
previous_return_value=$?;
prompt="\h:\W \u"
if test $previous_return_value -eq 0
then
PS1="${prompt}🍺 "
else
PS1="${prompt}πŸ’© "
fi
}
PROMPT_COMMAND=prompt_func
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment