mirror of
https://github.com/Manoj-HV30/i3wm-ubuntu-dotfiles.git
synced 2026-05-16 19:35:23 +00:00
11 lines
168 B
Bash
Executable File
11 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if iwgetid -r >/dev/null; then
|
|
SSID=$(iwgetid -r)
|
|
IP=$(hostname -I | awk '{print $1}')
|
|
echo " $SSID"
|
|
else
|
|
echo "❌ Disconnected"
|
|
fi
|
|
|