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 ;;
|
2020-05-07 21:31:42 +00:00
|
|
|
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
2019-11-23 21:23:24 +00:00
|
|
|
esac
|
|
|
|
|
2020-05-04 17:06:29 +00:00
|
|
|
# acpi alternative
|
|
|
|
# acpi | sed "s/Battery [0-9]: //;s/[Dd]ischarging, /🔋/;s/[Nn]ot charging, /🛑/;s/[Cc]harging, /🔌/;s/[Uu]nknown, /♻️/;s/[Ff]ull, /⚡/;s/ \(remaining\|until charged\)//"; exit
|
|
|
|
|
2020-12-15 02:50:09 +00:00
|
|
|
# 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 02:50:09 +00:00
|
|
|
# Defines the formatting for the info from the battery folders
|
|
|
|
format()
|
|
|
|
{
|
|
|
|
# Will make a warn variable if discharging and low
|
|
|
|
[ $(cat "$1/status") = "[Dd]ischarging" ] && [ $(cat "$1/capacity") -le 25 ] && local warn="❗ "
|
|
|
|
# Sets up the status and capacity
|
|
|
|
status=$(cat "$1/status")
|
|
|
|
case "$status" in
|
|
|
|
"Full")
|
|
|
|
status="⚡ "
|
|
|
|
;;
|
|
|
|
"Discharging")
|
|
|
|
status="🔋 "
|
|
|
|
;;
|
|
|
|
"Not charging")
|
|
|
|
status="🛑 "
|
|
|
|
;;
|
|
|
|
"Unknown")
|
|
|
|
status="♻️/ "
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
capacity=$(cat "$1/capacity")
|
|
|
|
# Prints the info
|
|
|
|
printf "%s%s%d%%\n" "$status" "$warn" "$capacity"
|
|
|
|
}
|
2019-11-23 21:23:24 +00:00
|
|
|
|
2020-12-15 02:50:09 +00:00
|
|
|
# Loop through all attached batteries and format the info
|
|
|
|
for battery in /sys/class/power_supply/BAT?*
|
|
|
|
do
|
|
|
|
format $battery
|
|
|
|
done && return 0
|