statusbar: removed colors

master
tiyn 1 year ago
parent f2170cda08
commit 1d0a626a7e

@ -5,6 +5,6 @@ status=$(cat /sys/class/power_supply/"$1"/status)
[ -z $warn ] && warn=" "
[ "$status" = "Charging" ] && color="#ffffff"
[ "$status" = "Charging" ]
printf "%s%s" "$(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/$/%/' ) "

@ -1,8 +1,8 @@
#!/usr/bin/env sh
#
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="^c#FF0000^^d^ -%"
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon=" -%"
[ ! -n "${wifiicon+var}" ] && wifiicon=$(grep "^\s*w" /proc/net/wireless | awk '{ print "", int($3 * 100 / 70) "%" }')
printf "%s %s\n" "$(cat /sys/class/net/e*/operstate | sed "s/down/^c#FF0000^^d^/;s/up/󰈀/")" "$wifiicon"
printf "%s %s\n" "$(cat /sys/class/net/e*/operstate | sed "s/down//;s/up/󰈀/")" "$wifiicon"

@ -3,19 +3,19 @@
vol="$(pulsemixer --get-volume | awk '{print $1}')"
if [ "$vol" -eq "0" ]; then
icon="^c#FF0000^^d^"
icon=""
elif [ "$vol" -gt "70" ]; then
icon=""
else
icon=""
fi
[ "$(pulsemixer --get-mute)" = "1" ] && icon="^c#FF0000^^d^" && vol="-"
[ "$(pulsemixer --get-mute)" = "1" ] && icon="" && vol="-"
if amixer get Capture | tail -2 | grep -q '\[on\]'; then
mic=""
else
mic="^c#FF0000^^d^"
mic=""
fi
printf "%s %s %s\\n" "$mic" "$icon" "$vol%"

Loading…
Cancel
Save