diff --git a/.local/bin/statusbar/sb-internet b/.local/bin/statusbar/sb-internet index cdd4312..cc97934 100755 --- a/.local/bin/statusbar/sb-internet +++ b/.local/bin/statusbar/sb-internet @@ -10,7 +10,7 @@ ###################################################################### -# Wifi quality percentage and  icon if ethernet is connected. +# Wifi quality percentage and  icon if ethernet is connected. ssid="$(wpa_cli status | grep -i ^ssid | sed -e 's/.*=//')" state="$(wpa_cli status | grep -i ^wpa_state | sed -e 's/.*=//')" case "$state" in @@ -23,6 +23,6 @@ if [ "up" = "$eth" ]; then str="$(printf "%s /  " "$str")" fi vpn="$(pidof openvpn)" -[ -n "$vpn" ] && str="$(printf "() %s" "$str")" +[ -n "$vpn" ] && str="$(printf "%s  " "$str")" printf " %s " "$str" diff --git a/.local/bin/statusbar/sb-mailbox b/.local/bin/statusbar/sb-mailbox index 754a4c1..c2d46be 100755 --- a/.local/bin/statusbar/sb-mailbox +++ b/.local/bin/statusbar/sb-mailbox @@ -19,7 +19,7 @@ do [ -n "$(echo "$acc" | sed -n '/@univ/p')" ] && box="" [ -n "$(echo "$acc" | sed -n '/@mailo/p')" ] && box="" [ -n "$(echo "$acc" | sed -n '/@posteo/p')" ] && box="" - unread="$unread/$box $new" + unread="$unread/$box$new" fi done [ -n "$unread" ] && unread="$(echo "$unread" | cut -c 2-)" || exit