9 lines
163 B
Bash
9 lines
163 B
Bash
#! /usr/bin/env bash
|
|
|
|
# Toggle networking on/off
|
|
|
|
if [[ "$(nmcli networking connectivity)" == 'none' ]]; then
|
|
nmcli networking on
|
|
else
|
|
nmcli networking off
|
|
fi
|