Skip to content

Commit

Permalink
Update battery indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
saloniamatteo committed Nov 20, 2024
1 parent 36a6874 commit 2f7e801
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions scripts/.local/bin/battery
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,22 @@ esac
for battery in /sys/class/power_supply/BAT?*; do
# If non-first battery, print a space separator.
[ -n "${capacity+x}" ] && printf " "

# Sets up the status and capacity
case "$(cat "$battery/status" 2>&1)" in
"Full") status="" ;;
"Full") status=" " ;;
"Discharging") status="🔋 " ;;
"Charging") status="🔌" ;;
"Charging") status="🔌 " ;;
"Not charging") status="🛑 " ;;
"Unknown") status="♻️" ;;
"Unknown") status="♻️ " ;;
*) exit 1 ;;
esac

capacity="$(cat "$battery/capacity" 2>&1)"

# Will make a warn variable if discharging and low
[ "$status" = "🔋" ] && [ "$capacity" -le 25 ] && warn=""

# Prints the info
printf "%s%s%d%%" "$status" "$warn" " $capacity"; unset warn
done && printf "\\n"

0 comments on commit 2f7e801

Please sign in to comment.