aboutsummaryrefslogtreecommitdiff
path: root/Scripts/.local/scripts/status/connection
blob: 139fea0b667436e70b45e665ae4018a23b20180f (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

internet=$(nmcli g | sed -n 2p | awk '{print $1}')
if [[ $internet == "connected" ]]
then
    echo "Connected"
else
    echo "Not connected"
fi