From 1d0a626a7ee0e1de16b83c8c3b5233ab2715a149 Mon Sep 17 00:00:00 2001 From: tiyn Date: Sun, 15 Oct 2023 05:55:51 +0200 Subject: [PATCH] statusbar: removed colors --- .local/bin/tools/statusbar/battery | 2 +- .local/bin/tools/statusbar/internet | 4 ++-- .local/bin/tools/statusbar/volume | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.local/bin/tools/statusbar/battery b/.local/bin/tools/statusbar/battery index 24370d3..a0c5953 100755 --- a/.local/bin/tools/statusbar/battery +++ b/.local/bin/tools/statusbar/battery @@ -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/$/%/' ) " diff --git a/.local/bin/tools/statusbar/internet b/.local/bin/tools/statusbar/internet index 3f9b5b0..0d09df0 100755 --- a/.local/bin/tools/statusbar/internet +++ b/.local/bin/tools/statusbar/internet @@ -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" diff --git a/.local/bin/tools/statusbar/volume b/.local/bin/tools/statusbar/volume index 7cafcac..2c07574 100755 --- a/.local/bin/tools/statusbar/volume +++ b/.local/bin/tools/statusbar/volume @@ -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%"