Add emoji-clock plugin
which displays the current time with half hour accuracy as an emoji symbol, for example in the shell prompt.
This commit is contained in:
parent
989b6ec29e
commit
9af2295394
1 changed files with 29 additions and 0 deletions
29
plugins/emoji-clock/emoji-clock.plugin.zsh
Normal file
29
plugins/emoji-clock/emoji-clock.plugin.zsh
Normal file
|
@ -0,0 +1,29 @@
|
|||
# ------------------------------------------------------------------------------
|
||||
# FILE: emoji-clock.plugin.zsh
|
||||
# DESCRIPTION: The current time with half hour accuracy as an emoji symbol.
|
||||
# Inspired by Andre Torrez' "Put A Burger In Your Shell"
|
||||
# http://notes.torrez.org/2013/04/put-a-burger-in-your-shell.html
|
||||
# AUTHOR: Alexis Hildebrandt (afh[at]surryhill.net)
|
||||
# VERSION: 1.0.0
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
function emoji-clock() {
|
||||
hour=$(date '+%I')
|
||||
minutes=$(date '+%M')
|
||||
case $hour in
|
||||
01) clock="π"; [ $minutes -ge 30 ] && clock="π";;
|
||||
02) clock="π"; [ $minutes -ge 30 ] && clock="π";;
|
||||
03) clock="π"; [ $minutes -ge 30 ] && clock="π";;
|
||||
04) clock="π"; [ $minutes -ge 30 ] && clock="π";;
|
||||
05) clock="π"; [ $minutes -ge 30 ] && clock="π ";;
|
||||
06) clock="π"; [ $minutes -ge 30 ] && clock="π‘";;
|
||||
07) clock="π"; [ $minutes -ge 30 ] && clock="π’";;
|
||||
08) clock="π"; [ $minutes -ge 30 ] && clock="π£";;
|
||||
09) clock="π"; [ $minutes -ge 30 ] && clock="π€";;
|
||||
10) clock="π"; [ $minutes -ge 30 ] && clock="π₯";;
|
||||
11) clock="π"; [ $minutes -ge 30 ] && clock="π¦";;
|
||||
12) clock="π"; [ $minutes -ge 30 ] && clock="π§";;
|
||||
*) clock="β";;
|
||||
esac
|
||||
echo $clock
|
||||
}
|
Loadingβ¦
Reference in a new issue