battery only read colors; stop sign for non-charge
This commit is contained in:
parent
8a6db6ae10
commit
9d11eec03c
1 changed files with 3 additions and 2 deletions
|
@ -2,11 +2,12 @@
|
||||||
# Give a battery name (e.g. BAT0) as an argument.
|
# Give a battery name (e.g. BAT0) as an argument.
|
||||||
|
|
||||||
# get xresources colors
|
# 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
|
case $BLOCK_BUTTON in
|
||||||
3) pgrep -x dunst >/dev/null && notify-send "<b>🔋 Battery module:</b>
|
3) pgrep -x dunst >/dev/null && notify-send "<b>🔋 Battery module:</b>
|
||||||
🔋: discharging
|
🔋: discharging
|
||||||
|
🛑: not charging
|
||||||
♻: stagnant charge
|
♻: stagnant charge
|
||||||
🔌: charging
|
🔌: charging
|
||||||
⚡: charged
|
⚡: charged
|
||||||
|
@ -32,4 +33,4 @@ fi
|
||||||
|
|
||||||
[ "$status" = "Charging" ] && color="$color15"
|
[ "$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/$/%/')"
|
||||||
|
|
Loading…
Reference in a new issue