Selaa lähdekoodia

~/.config/dwm/status.sh: Usa bigger 'network not available' icon

Lu Stadler 7 vuotta sitten
vanhempi
commit
b662e250e9
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      .config/dwm/status.sh

+ 1 - 1
.config/dwm/status.sh

@ -7,7 +7,7 @@ status=""
7 7
network="$(nmcli --terse --colors no --fields name,type connection show --active | grep -v ':bridge$' | sed 's/:[-a-z0-9]*$//' | head -n1)"
8 8
status="📡 $network"
9 9
if [ "$network" = "" ]; then
10
	status="📯"
10
	status=""
11 11
fi
12 12
#status="📡 $(nmcli -t -f active,ssid dev wifi | sort -r | uniq)"
13 13