10 lines
130 B
Bash
Executable file
10 lines
130 B
Bash
Executable file
#!/bin/bash
|
|
# wifi.sh
|
|
|
|
SSID=$(iwgetid -r)
|
|
|
|
if [ "$SSID" != "Yggdrasil"]; then
|
|
echo " Disconnected"
|
|
else
|
|
echo " $SSID"
|
|
fi
|