diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-03-29 14:16:07 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-03-29 14:16:07 -0400 |
| commit | 326ed6b56d71a9b689819256c9d85a2a5ece4b8f (patch) | |
| tree | 913ba5fdb72e64833c110d12a4e646961f9f8c53 | |
| parent | 49247875e0cdd9de5019090ab525c0d700ba178a (diff) | |
| download | eibhear-326ed6b56d71a9b689819256c9d85a2a5ece4b8f.tar.gz eibhear-326ed6b56d71a9b689819256c9d85a2a5ece4b8f.tar.zst eibhear-326ed6b56d71a9b689819256c9d85a2a5ece4b8f.zip | |
battery minor imporvements
| -rwxr-xr-x | .local/bin/statusbar/battery | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/.local/bin/statusbar/battery b/.local/bin/statusbar/battery index 69da3f5..82e8450 100755 --- a/.local/bin/statusbar/battery +++ b/.local/bin/statusbar/battery @@ -1,7 +1,7 @@ #!/bin/sh # Prints all batteries, their percentage remaining and an emoji corresponding -# to charge status (🔌 for pluged up, 🔋 for discharging on battery, etc.). +# to charge status (🔌 for plugged up, 🔋 for discharging on battery, etc.). case $BLOCK_BUTTON in 3) pgrep -x dunst >/dev/null && notify-send "🔋 Battery module" "🔋: discharging @@ -16,15 +16,12 @@ esac for battery in /sys/class/power_supply/BAT? do # Get its remaining capacity and charge status. - capacity=$(cat "$battery"/capacity) || exit - status=$(cat "$battery"/status) + capacity=$(cat "$battery"/capacity) + status=$(sed "s/Discharging/🔋/;s/Not charging/🛑/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/" "$battery"/status) # If it is discharging and 25% or less, we will add a ❗ as a warning. - [ "$status" = "Discharging" ] && [ "$capacity" -le 25 ] && warn="❗" + [ "$capacity" -le 25 ] && [ "$status" = "🔋" ] && warn="❗" - # Print the battery status (replaced by a cooresponding emoji with - # sed), the percentage left and the warning if there is one. - printf "%s%s%s\n" "$(echo "$status" | sed "s/,//;s/Discharging/🔋/;s/Not charging/🛑/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')" + printf "%s%s%s%%\n" "$status" "$warn" "$capacity" unset warn done - |
