Files
repos_scripts/wifi
2021-07-01 21:23:58 +05:30

10 lines
164 B
Bash
Executable File

#!/bin/bash
if rfkill list wifi | grep -q 'yes$' ; then
sudo rfkill unblock 0
notify-send "wifi on"
else
sudo rfkill block 0
notify-send "wifi off"
fi