summaryrefslogtreecommitdiffstats
path: root/.local/bin/statusbar/battery
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-05-18 16:22:57 -0400
committerLuke Smith <luke@lukesmith.xyz>2019-05-18 16:22:57 -0400
commit8117f841988e1e3e32926928d7b9053a78df67a8 (patch)
treebb796c0dee21bccbc26c44472954f71cc23f96c3 /.local/bin/statusbar/battery
parent67f70d70bb746cd25b56e36a881201ae547b7a36 (diff)
downloadeibhear-8117f841988e1e3e32926928d7b9053a78df67a8.tar.gz
eibhear-8117f841988e1e3e32926928d7b9053a78df67a8.tar.zst
eibhear-8117f841988e1e3e32926928d7b9053a78df67a8.zip
i3 eternally btfo
Diffstat (limited to '.local/bin/statusbar/battery')
-rwxr-xr-x.local/bin/statusbar/battery32
1 files changed, 0 insertions, 32 deletions
diff --git a/.local/bin/statusbar/battery b/.local/bin/statusbar/battery
deleted file mode 100755
index 25c9269..0000000
--- a/.local/bin/statusbar/battery
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-# Give a battery name (e.g. BAT0) as an argument.
-
-case $BLOCK_BUTTON in
- 3) pgrep -x dunst >/dev/null && notify-send "🔋 Battery module" "🔋: discharging
-🛑: not charging
-♻: stagnant charge
-🔌: charging
-⚡: charged
-❗: battery very low!
-- Text color reflects charge left" ;;
-esac
-
-capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
-status=$(cat /sys/class/power_supply/"$1"/status)
-
-if [ "$capacity" -ge 75 ]; then
- color="#00ff00"
-elif [ "$capacity" -ge 50 ]; then
- color="#ffffff"
-elif [ "$capacity" -ge 25 ]; then
- color="#ffff00"
-else
- color="#ff0000"
- warn="❗"
-fi
-
-[ -z $warn ] && warn=" "
-
-[ "$status" = "Charging" ] && color="#ffffff"
-
-printf "<span color='%s'>%s%s%s</span>" "$color" "$(echo "$status" | sed -e "s/,//;s/Discharging/🔋/;s/Not Charging/🛑/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')"