1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-25 20:58:37 -06:00
random/wifi-toggle
2021-04-20 00:24:49 +05:30

10 lines
213 B
Text
Executable file

# Toggles WiFi on a Linux system. Make sure that you have nmcli installed.
# I use it with a shortcut.
#!/bin/bash
if [ $(nmcli r wifi | grep -c enabled) -eq 1 ]; then
nmcli r wifi off
else
nmcli r wifi on
fi