Skip to content

Instantly share code, notes, and snippets.

@nyarly
Created April 13, 2018 17:20
Show Gist options
  • Save nyarly/2eee420449ce159f506ef8a984f8a833 to your computer and use it in GitHub Desktop.
Save nyarly/2eee420449ce159f506ef8a984f8a833 to your computer and use it in GitHub Desktop.
# Defined in /home/judson/.config/fish/functions/status_glyph.fish @ line 1
function status_glyph
switch $LAST_STATUS
case 0
term_fcolor 3b1
echo -n "πŸ˜‰ ";;
case 1
term_fcolor c66
echo -n "😠 ";;
case 2
term_fcolor f00
echo -n "😐 ";;
case '*'
term_fcolor f00
echo -n "😱 ";;
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment