This commit is contained in:
sevi-kun
2020-05-26 08:31:18 +02:00
parent eb128e6767
commit 09a818598a
10 changed files with 80 additions and 0 deletions

8
toggle_bluetooth.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
if rfkill list bluetooth | grep -q 'yes$' ; then
rfkill unblock bluetooth
notify-send "Bloetooth is now enabled"
else
rfkill block bluetooth
notify-send "Bloetooth is now disabled"
fi