moonphase won't run if pom-perl not installed

This commit is contained in:
Luke Smith 2020-05-04 08:07:40 -04:00
parent 1c79c00208
commit 4920a1b363
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252

View file

@ -2,7 +2,7 @@
# Shows the current moon phase. Requires `pom-perl`.
mnphs=$(pom $1 | grep -o 'New\|Waxing Crescent\|First Quarter\|Waxing Gibbous\|Full\|Waning Gibbous\|Last Quarter\|Waning Crescent' | grep -m1 '.')
mnphs=$(pom $1 | grep -o 'New\|Waxing Crescent\|First Quarter\|Waxing Gibbous\|Full\|Waning Gibbous\|Last Quarter\|Waning Crescent' | grep -m1 '.') || exit 1
prcnt=$(pom $1 | grep -o '[[:digit:]]*%' | grep -o '[[:digit:]]*' )
case "$mnphs" in
"New") icon="🌑" prcnt="0" ;;
@ -13,13 +13,12 @@ case "$mnphs" in
"Waning Gibbous") icon="🌖" ;;
"Last Quarter") icon="🌗" prcnt="50" ;;
"Waning Crescent") icon="🌘" ;;
*) echo errorrrr ;;
esac
case $BLOCK_BUTTON in
case ${BUTTON:-$BLOCK_BUTTON} in
1) $mnphs ;;
2) $mnphs ;;
3) notify-send " 🌜$(pom)" ;;
esac
echo "$icon" "$prcnt"%
echo "${icon:?}" "$prcnt"%