Files
hyprdots/hypr/wifi
2022-11-09 16:00:53 +05:30

10 lines
181 B
Bash
Executable File

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