voidrice/.local/bin/statusbar/moonphase
Hekuran 4dbff2873d
Now moonphase is correct and even more precise (#637)
As described in issue #636  using wttr.in was incorerct by 16%
Now the `~/.local/share/moonphase` looks ugly, so dont look at it.
2020-05-16 10:15:05 -04:00

29 lines
1.2 KiB
Bash
Executable file

#!/bin/sh
# Shows the current moon phase.
moonfile="${XDG_DATA_HOME:-$HOME/.local/share}/moonphase"
[ "$(stat -c %y "$moonfile" 2>/dev/null | cut -d' ' -f1)" = "$(date '+%Y-%m-%d')" ] ||
{ curl -sf 'https://www.timeanddate.com/moon/phases/' | grep -m1 -o cur-moon-percent.......................................................................................................................................................... > "$moonfile" || exit 1 ;}
mnphs=$( cat $moonfile | grep -o 'New\|Waxing Crescent\|First Quarter\|Waxing Gibbous\|Full\|Waning Gibbous\|Last Quarter\|Waning Crescent' | grep -m1 '.')
prcnt=$( cat $moonfile | grep -o "[0-9.0-9]*%" | grep -o "[0-9.0-9]*" )
case "$mnphs" in
"New") icon="🌑" prcnt="0" ;;
"Waxing Crescent") icon="🌒" ;;
"First Quarter") icon="🌓" prcnt="50" ;;
"Waxing Gibbous") icon="🌔" ;;
"Full") icon="🌕" prcnt="100" ;;
"Waning Gibbous") icon="🌖" ;;
"Last Quarter") icon="🌗" prcnt="50" ;;
"Waning Crescent") icon="🌘" ;;
*) echo exit 1 ;;
esac
echo ""$icon" "$prcnt"%"
case $BLOCK_BUTTON in
3) notify-send "🌜 Moon phase module" "$icon: $mnphs $prcnt" ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac