Parcourir la Source

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

Lu Stadler 7 ans auparavant
Parent
commit
b662e250e9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      .config/dwm/status.sh

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

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