diff --git a/.config/polybar/scripts/nmcli_manager b/.config/polybar/scripts/nmcli_manager index b1e82e8..f2c4163 100755 --- a/.config/polybar/scripts/nmcli_manager +++ b/.config/polybar/scripts/nmcli_manager @@ -32,11 +32,10 @@ function build_rofi_menu() dtype="$(cut -d':' -f2 <<< $line)" device="$(cut -d':' -f3 <<< $line)" - [[ -z $device ]] && status=DOWN || status=UP + [[ -z $device ]] && status= || status= dtype=${dtype##*-} - option="$name $dtype is $status" - option=$(printf '%-45s | %s | %s\n' "$name" $dtype $status) + menu="$menu # $option" done < <(nmcli -c no --terse -f NAME,TYPE,DEVICE connection show)