浏览代码

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

Lu Stadler 7 年之前
父节点
当前提交
b662e250e9
共有 1 个文件被更改,包括 1 次插入1 次删除
  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