[polybar] Update nmcli icons

This commit is contained in:
Daniel Carrillo 2019-08-07 16:44:17 +02:00
parent 7a6d7ca172
commit 06f898d3f3
1 changed files with 2 additions and 3 deletions

View File

@ -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)