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