diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-02-20 15:28:15 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-02-20 15:28:15 -0500 |
| commit | de96754e754520d0e0b404f69dd74680a82ea76d (patch) | |
| tree | 3b19cc30b1719cbfa82b47c9a10ed6ae08b3ee91 /.scripts/statusbar/battery | |
| parent | d587e8cd57cbfc81835e3ce43b434e278ffb9f13 (diff) | |
| download | eibhear-de96754e754520d0e0b404f69dd74680a82ea76d.tar.gz eibhear-de96754e754520d0e0b404f69dd74680a82ea76d.tar.zst eibhear-de96754e754520d0e0b404f69dd74680a82ea76d.zip | |
xresources was bloat anyway
Diffstat (limited to '.scripts/statusbar/battery')
| -rwxr-xr-x | .scripts/statusbar/battery | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/.scripts/statusbar/battery b/.scripts/statusbar/battery index 02839b1..e5f6ec7 100755 --- a/.scripts/statusbar/battery +++ b/.scripts/statusbar/battery @@ -1,9 +1,6 @@ #!/bin/sh # Give a battery name (e.g. BAT0) as an argument. -# get xresources colors -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 @@ -19,18 +16,18 @@ capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit status=$(cat /sys/class/power_supply/"$1"/status) if [ "$capacity" -ge 75 ]; then - color="$color10" + color="#00ff00" elif [ "$capacity" -ge 50 ]; then - color="$color15" + color="#ffffff" elif [ "$capacity" -ge 25 ]; then - color="$color11" + color="#ffff00" else - color="$color9" + color="#ff0000" warn="❗" fi [ -z $warn ] && warn=" " -[ "$status" = "Charging" ] && color="$color15" +[ "$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/$/%/')" |
