summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
Diffstat (limited to '.local')
-rw-r--r--.local/bin/statusbar/moonphase18
1 files changed, 18 insertions, 0 deletions
diff --git a/.local/bin/statusbar/moonphase b/.local/bin/statusbar/moonphase
new file mode 100644
index 0000000..6ccc81b
--- /dev/null
+++ b/.local/bin/statusbar/moonphase
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+mnphs=$(pom | grep -io 'new\|waxing cresent\|first quarter\|waxing gibbous\|full\|waning gibbous\|last quarter\|waning cresent' | grep -m1 '.')
+prcnt=$(pom | grep -o '..%')
+
+case $mnphs in
+ "New") icon="🌑" ;;
+ "Waxing Cresent") icon="🌒" ;;
+ "First Quarter") icon="🌓" ;;
+ "Waxing Gibbous") icon="🌔" ;;
+ "Full") icon="🌕" ;;
+ "Waning Gibbous") icon="🌖" ;;
+ "Last Quarter") icon="🌗" ;;
+ "Waning Cresent") icon="🌘" ;;
+ *) echo errorrrr ;;
+esac
+
+printf "%s %s\\n" "$icon" "$prcnt"