Guest User

Untitled

a guest
Apr 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # Defined in /home/judson/.config/fish/functions/status_glyph.fish @ line 1
  2. function status_glyph
  3. switch $LAST_STATUS
  4. case 0
  5. term_fcolor 3b1
  6. echo -n "😉 ";;
  7. case 1
  8. term_fcolor c66
  9. echo -n "😠 ";;
  10. case 2
  11. term_fcolor f00
  12. echo -n "😐 ";;
  13. case '*'
  14. term_fcolor f00
  15. echo -n "😱 ";;
  16. end
  17. end
Add Comment
Please, Sign In to add comment