2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2020-03-27 13:56:04 +00:00
|
|
|
|
|
|
|
# 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
|
2020-05-07 21:31:42 +00:00
|
|
|
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 ;;
|
2023-12-30 17:04:51 +00:00
|
|
|
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
|
2021-02-15 15:53:41 +00:00
|
|
|
for battery in /sys/class/power_supply/BAT?*; do
|
|
|
|
# If non-first battery, print a space separator.
|
|
|
|
[ -n "${capacity+x}" ] && printf " "
|
2020-12-15 02:50:09 +00:00
|
|
|
# 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 ;;
|
2020-12-15 02:50:09 +00:00
|
|
|
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
|
2020-12-18 16:56:46 +00:00
|
|
|
[ "$status" = "🔋" ] && [ "$capacity" -le 25 ] && warn="❗"
|
2020-12-15 02:50:09 +00:00
|
|
|
# Prints the info
|
2021-02-15 15:53:41 +00:00
|
|
|
printf "%s%s%d%%" "$status" "$warn" "$capacity"; unset warn
|
2021-08-25 12:02:39 +00:00
|
|
|
done && printf "\\n"
|