only quit read of afflickted bad battery, not all

This commit is contained in:
Alexander Bocken 2020-11-08 10:58:32 +01:00
parent 9cdc596af2
commit 6dd9899a03
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8

View File

@ -17,8 +17,8 @@ for battery in /sys/class/power_supply/BAT?
do
# Get its remaining capacity and charge status.
capacity=$(cat "$battery"/capacity 2>/dev/null)
[ "$capacity" -gt 100 ] && exit #do not print misreads
[ -z "$capacity" ] && exit #if battery fails during reading, quit
[ "$capacity" -gt 100 ] && continue #do not print misreads
[ -z "$capacity" ] && continue #if battery fails during reading, quit
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.