voidrice/.local/bin/statusbar/battery

39 lines
1.1 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) "$TERMINAL" -e "$EDITOR" "$0" ;;
2019-11-23 21:23:24 +00:00
esac
# Check if battery directories are detected
[ ! -e /sys/class/power_supply/BAT?* ] && echo "No battery found" && exit 1
2019-11-23 21:23:24 +00:00
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
# Sets up the status and capacity
2020-12-15 21:29:17 +00:00
status=$(cat "$battery/status")
case "$status" in
2020-12-15 21:29:17 +00:00
"Full") status="⚡" ;;
"Discharging") status="🔋" ;;
"Not charging") status="🛑" ;;
"Unknown") status="♻️" ;;
esac
2020-12-15 21:29:17 +00:00
capacity=$(cat "$battery/capacity")
2020-12-15 21:01:53 +00:00
# Will make a warn variable if discharging and low
2020-12-15 21:29:17 +00:00
[ "$status" = "🔋" ] && [ "$capacity" -le 25 ] && local warn="❗"
# Prints the info
printf "%s%s%d%%\n" "$status" "$warn" "$capacity"
done && return 0