Add sh/values/wifi.sh
This commit is contained in:
parent
234fc827f8
commit
e20bbfba9a
9
sh/values/wifi.sh
Normal file
9
sh/values/wifi.sh
Normal file
@ -0,0 +1,9 @@
|
||||
res=$(nmcli device wifi list | sed 's/\ \ \ */|/g' | grep "*" | cut -d"|" -f 3,6,8)
|
||||
|
||||
name=${res%%|*}
|
||||
bars=${res##*|}
|
||||
bars=$(( 4 - $(echo $bars | tr -dc "_" |wc -c) ))
|
||||
speed=${res#*|}
|
||||
speed=${speed%|*}
|
||||
|
||||
echo "{\"name\":\"$name\",\"speed\":\"$speed\",\"bars\":\"$bars\",\"icon\":\"\"}"
|
Loading…
Reference in New Issue
Block a user