mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 07:15:23 +05:30
10 lines
181 B
Bash
Executable File
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
|
|
|