diff options
author | ZachIR <zachir@librem.one> | 2025-08-09 08:45:39 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-08-09 08:45:39 -0500 |
commit | 722364ceebdbb709c8469249f6fd53037a5fe30b (patch) | |
tree | f8c8a099117c301e28ac4fe6f067eb34d895e642 /sb-battery | |
parent | 746ef9801cb5da6f29ddb11707aad3f414e3fde2 (diff) |
Diffstat (limited to 'sb-battery')
-rwxr-xr-x | sb-battery | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sb-battery b/sb-battery new file mode 100755 index 0000000..28c0b36 --- /dev/null +++ b/sb-battery @@ -0,0 +1,21 @@ +#!/bin/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/ *$//' |