Skip to content

Instantly share code, notes, and snippets.

@gschueler
Created June 4, 2014 18:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gschueler/65475a78a21137c54bde to your computer and use it in GitHub Desktop.
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