know the phase of the moon with emoji and % (#482)
8 emoji for 8 main phases plus the % 'of full'
😉 dont forget to load it to your status bar
This commit is contained in:
parent
4acbbc07d3
commit
8d4a021f37
1 changed files with 18 additions and 0 deletions
18
.local/bin/statusbar/moonphase
Normal file
18
.local/bin/statusbar/moonphase
Normal file
|
@ -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"
|
Loading…
Reference in a new issue