statusbar: added colors

master
tiyn 1 year ago
parent 42050220b5
commit f2170cda08

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

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

Loading…
Cancel
Save