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

internet=$(nmcli g | sed -n 2p | awk '{print $1}')
if [[ $internet == "connected" ]]
then
    con=$(nmcli | grep "connected to" | sed 's/.*: connected to \(.*\)/\1/g')
    echo " " $con
else
    echo " Not Connected"
fi