added scripts

This commit is contained in:
CoolnsX
2021-07-01 21:23:58 +05:30
parent 4d1bf7b564
commit a0d2ace1f2
6 changed files with 73 additions and 0 deletions

9
wifi Executable file
View File

@@ -0,0 +1,9 @@
#!/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