summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2013-04-08 09:38:15 +0200
committerAlexis Hildebrandt <afh@surryhill.net>2013-04-08 09:38:15 +0200
commit9af229539467adf010c1f81c0ac4f03dc9bc9542 (patch)
tree3b718dd54c2ada5512c9c732725aaa55b0cc510a /plugins
parent989b6ec29eb523424ea4ec701068789878e62400 (diff)
downloadzsh-9af229539467adf010c1f81c0ac4f03dc9bc9542.tar.gz
zsh-9af229539467adf010c1f81c0ac4f03dc9bc9542.tar.bz2
zsh-9af229539467adf010c1f81c0ac4f03dc9bc9542.zip
Add emoji-clock plugin
which displays the current time with half hour accuracy as an emoji symbol, for example in the shell prompt.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/emoji-clock/emoji-clock.plugin.zsh29
1 files changed, 29 insertions, 0 deletions
diff --git a/plugins/emoji-clock/emoji-clock.plugin.zsh b/plugins/emoji-clock/emoji-clock.plugin.zsh
new file mode 100644
index 000000000..7351a02ec
--- /dev/null
+++ b/plugins/emoji-clock/emoji-clock.plugin.zsh
@@ -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
+}