Update battery capacity calculation

This commit is contained in:
Santiago Lo Coco 2022-03-13 19:33:38 -03:00
parent 1ff340925f
commit 614346124a
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,7 @@
#!/bin/sh
battery=/sys/class/power_supply/BAT0
status=$(cat "$battery/status")
maxCapacity=85
status=$(cat "$battery/status" 2>&1)
#case "$(cat "$battery/status" 2>&1)" in
case "$(cat "$battery/status" 2>&1)" in
@ -19,7 +18,8 @@ if [ "$status" = "Full" ]; then
exit 0
fi
capacity="$(cat "$battery/capacity" 2>&1)"
capacity=$(echo "$capacity/$maxCapacity*100" | bc -l)
chargeNow=$(cat "$battery/charge_now" 2>&1)
chargeFull=$(cat "$battery/charge_full" 2>&1)
capacity=$(echo "$chargeNow/$chargeFull*100" | bc -l)
printf "%s %.0f%%" "$statusIcon" "$capacity"