voidrice/.local/bin/statusbar/sb-battery

38 lines
1.2 KiB
Text
Raw Normal View History

#!/bin/sh
# Prints all batteries, their percentage remaining and an emoji corresponding
2020-03-29 18:16:07 +00:00
# to charge status (🔌 for plugged up, 🔋 for discharging on battery, etc.).
2019-11-23 21:23:24 +00:00
case $BLOCK_BUTTON in
3) notify-send "🔋 Battery module" "🔋: discharging
2019-11-23 21:23:24 +00:00
🛑: not charging
♻: stagnant charge
🔌: charging
⚡: charged
2020-07-08 12:58:12 +00:00
❗: battery very low!
- Scroll to change adjust xbacklight." ;;
4) xbacklight -inc 10 ;;
5) xbacklight -dec 10 ;;
6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
2019-11-23 21:23:24 +00:00
esac
2020-12-15 21:29:17 +00:00
# Loop through all attached batteries and format the info
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
2021-08-25 12:02:39 +00:00
case "$(cat "$battery/status" 2>&1)" in
2020-12-15 21:29:17 +00:00
"Full") status="⚡" ;;
"Discharging") status="🔋" ;;
2020-12-16 12:50:04 +00:00
"Charging") status="🔌" ;;
2020-12-15 21:29:17 +00:00
"Not charging") status="🛑" ;;
"Unknown") status="♻️" ;;
2021-08-25 12:02:39 +00:00
*) exit 1 ;;
esac
2021-08-25 12:02:39 +00:00
capacity="$(cat "$battery/capacity" 2>&1)"
2020-12-15 21:01:53 +00:00
# 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
2021-08-25 12:02:39 +00:00
done && printf "\\n"