#!/bin/bash if iwgetid -r >/dev/null; then SSID=$(iwgetid -r) IP=$(hostname -I | awk '{print $1}') echo " $SSID" else echo "❌ Disconnected" fi