petits-scripts-persos/switch-wifi

9 lines
172 B
Plaintext
Raw Normal View History

2022-02-10 08:05:07 +00:00
#!/bin/sh
if [[ "$(nmcli radio wifi)" = "enabled" ]] ; then
nmcli radio wifi off
notify-send "Wifi is now" off
else
nmcli radio wifi on
notify-send "Wifi is now" on
fi