summaryrefslogtreecommitdiff
path: root/battery
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2022-08-12 04:30:51 -0500
committerzachir <zachir@librem.one>2022-08-12 04:30:51 -0500
commitc4d96716c05c41a3b18f2326cb588cd19246da5f (patch)
treeaa6b16c2e89ee63d37eb05e38577ec0b0bddea59 /battery
initial commit
Diffstat (limited to 'battery')
-rwxr-xr-xbattery21
1 files changed, 21 insertions, 0 deletions
diff --git a/battery b/battery
new file mode 100755
index 0000000..fb5349c
--- /dev/null
+++ b/battery
@@ -0,0 +1,21 @@
+#!/sbin/sh
+
+case $BLOCK_BUTTON in
+ 2) notify-send "Battery module" "- : discharging
+X : not charging
+? : unknown
++ : charging
+| : charged
+! : battery very low!" ;;
+ 6) "$TERMINAL" -e "$EDITOR" "$0" ;;
+esac
+
+ls /sys/class/power_supply/ | grep -i bat | head -1 | while read battery;
+do
+ capacity=$(cat "/sys/class/power_supply/$battery"/capacity) || break
+ status=$(sed "s/[Dd]ischarging/-/;s/[Nn]ot charging/X/;s/[Cc]harging/+/;s/[Uu]nknown/?/;s/[Ff]ull/|/" "/sys/class/power_supply/$battery"/status)
+
+ [ "$capacity" -le 25 ] && [ "$status" = "!" ] && warn="!"
+ printf "[%s%s%s]" "$status" "$warn" "$capacity"
+ unset warn
+done | sed 's/ *$//'