aboutsummaryrefslogtreecommitdiff
path: root/.config/polybar/scripts/toggle_bluetooth.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/polybar/scripts/toggle_bluetooth.sh')
-rwxr-xr-x.config/polybar/scripts/toggle_bluetooth.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/.config/polybar/scripts/toggle_bluetooth.sh b/.config/polybar/scripts/toggle_bluetooth.sh
deleted file mode 100755
index 899d5ec..0000000
--- a/.config/polybar/scripts/toggle_bluetooth.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
-then
- bluetoothctl power on
-else
- bluetoothctl power off
-fi
-