10 lines
122 B
Bash
10 lines
122 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
status=$(nmcli g | grep -oE "disconnected")
|
||
|
|
||
|
if [ $status ] ; then
|
||
|
echo "✘"
|
||
|
else
|
||
|
echo ""
|
||
|
fi
|