diff options
Diffstat (limited to '.local')
| -rwxr-xr-x | .local/bin/statusbar/battery | 2 | ||||
| -rw-r--r-- | .local/bin/statusbar/moonphase | 25 |
2 files changed, 13 insertions, 14 deletions
diff --git a/.local/bin/statusbar/battery b/.local/bin/statusbar/battery index c52d9de..e8b0554 100755 --- a/.local/bin/statusbar/battery +++ b/.local/bin/statusbar/battery @@ -1,5 +1,5 @@ #!/bin/sh -# Give a battery name (e.g. BAT0) as an argument. +# Give a battery name (Check the battery name from sys/class/power_supply/ e.g. BAT0 or BAT1 and pass it as an argument. case $BLOCK_BUTTON in 3) pgrep -x dunst >/dev/null && notify-send "🔋 Battery module" "🔋: discharging diff --git a/.local/bin/statusbar/moonphase b/.local/bin/statusbar/moonphase index 6ccc81b..d2bbad6 100644 --- a/.local/bin/statusbar/moonphase +++ b/.local/bin/statusbar/moonphase @@ -1,18 +1,17 @@ #!/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 ;; +mnphs=$(pom $1 | grep -o 'New\|Waxing Crescent\|First Quarter\|Waxing Gibbous\|Full\|Waning Gibbous\|Last Quarter\|Waning Crescent' | grep -m1 '.') +prcnt=$(pom $1 | grep -o '[[:digit:]]*%') +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 errorrrr ;; esac printf "%s %s\\n" "$icon" "$prcnt" |
