summaryrefslogtreecommitdiffstats
path: root/.scripts
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-02-09 18:07:41 -0500
committerLuke Smith <luke@lukesmith.xyz>2019-02-09 18:07:41 -0500
commit9d11eec03c2f196afcc9b29b4d16593daa7dd56b (patch)
treeed4f428e2f0639429b44398d5c9cabe2e930bde5 /.scripts
parent8a6db6ae10fa3c8756c2722fcaed82746bc01924 (diff)
downloadeibhear-9d11eec03c2f196afcc9b29b4d16593daa7dd56b.tar.gz
eibhear-9d11eec03c2f196afcc9b29b4d16593daa7dd56b.tar.zst
eibhear-9d11eec03c2f196afcc9b29b4d16593daa7dd56b.zip
battery only read colors; stop sign for non-charge
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/statusbar/battery5
1 files changed, 3 insertions, 2 deletions
diff --git a/.scripts/statusbar/battery b/.scripts/statusbar/battery
index b2634e6..02839b1 100755
--- a/.scripts/statusbar/battery
+++ b/.scripts/statusbar/battery
@@ -2,11 +2,12 @@
# Give a battery name (e.g. BAT0) as an argument.
# get xresources colors
-for x in "$(xrdb -query | sed "s/.*\./export /g;s/:\s*/=\"/g;s/$/\"/g")"; do eval "$x"; done
+for x in "$(xrdb -query | grep color | sed "s/.*\./export /g;s/:\s*/=\"/g;s/$/\"/g")"; do eval "$x"; done
case $BLOCK_BUTTON in
3) pgrep -x dunst >/dev/null && notify-send "<b>🔋 Battery module:</b>
🔋: discharging
+🛑: not charging
♻: stagnant charge
🔌: charging
⚡: charged
@@ -32,4 +33,4 @@ fi
[ "$status" = "Charging" ] && color="$color15"
-printf "<span color='%s'>%s%s%s</span>" "$color" "$(echo "$status" | sed -e "s/,//g;s/Discharging/🔋/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')"
+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/$/%/')"