mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
9 lines
163 B
Bash
9 lines
163 B
Bash
#!/usr/bin/env bash
|
|
|
|
cons=$(nmcli -t -f NAME c show --active | grep $1)
|
|
if [ $cons ]; then
|
|
nmcli c down $1 1> /dev/null
|
|
else
|
|
nmcli c up $1 1> /dev/null
|
|
fi
|