only print battery status if not full
This commit is contained in:
parent
f6d88729de
commit
d2a9963dad
@ -17,8 +17,9 @@ for battery in /sys/class/power_supply/BAT?
|
|||||||
do
|
do
|
||||||
# Get its remaining capacity and charge status.
|
# Get its remaining capacity and charge status.
|
||||||
capacity=$(cat "$battery"/capacity 2>/dev/null)
|
capacity=$(cat "$battery"/capacity 2>/dev/null)
|
||||||
[ -n "$capacity" ] && [ "$capacity" -gt 100 ] && continue #do not print misreads
|
[ -n "$capacity" ] && [ "$capacity" -gt 100 ] && echo "Error. Capacity:$capacity" > /dev/stderr && continue #do not print misreads
|
||||||
[ -z "$capacity" ] && continue #if battery fails during reading, quit
|
[ -z "$capacity" ] && echo "Error. Capacity:$capacity" > /dev/stderr && continue #if battery fails during reading, quit
|
||||||
|
[ -n "$capacity" ] && [ "$capacity" -eq 100 ] && echo && continue # do not display full batteries (nice to unclutter status bars for laptops mostly used stationiary)
|
||||||
status=$(sed "s/Discharging/🔋/;s/Not charging/🛑/;s/Charging/🔌/;s/Unknown/🔋/;s/Full/⚡/" "$battery"/status)
|
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.
|
# If it is discharging and 25% or less, we will add a ❗ as a warning.
|
||||||
[ "$capacity" -le 25 ] && [ "$status" = "🔋" ] && warn="❗"
|
[ "$capacity" -le 25 ] && [ "$status" = "🔋" ] && warn="❗"
|
||||||
|
Loading…
Reference in New Issue
Block a user