2022-01-02 22:35:07 -06:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-04-19 13:54:49 -05:00
|
|
|
# Toggles WiFi on a Linux system. Make sure that you have nmcli installed.
|
|
|
|
# I use it with a shortcut.
|
|
|
|
|
|
|
|
if [ $(nmcli r wifi | grep -c enabled) -eq 1 ]; then
|
|
|
|
nmcli r wifi off
|
|
|
|
else
|
|
|
|
nmcli r wifi on
|
|
|
|
fi
|