diff --git a/.local/bin/polybar_scripts/bluetooth.sh b/.local/bin/polybar_scripts/bluetooth.sh deleted file mode 100755 index 9c0bd76f..00000000 --- a/.local/bin/polybar_scripts/bluetooth.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ] -then - echo "%{F#66ffffff}" -else - if [ $(echo info | bluetoothctl | grep 'Device' | wc -c) -eq 0 ] - then - echo "" - fi - echo "%{F#2193ff}" -fi - diff --git a/.local/bin/polybar_scripts/toggle_bluetooth.sh b/.local/bin/polybar_scripts/toggle_bluetooth.sh deleted file mode 100755 index dffb663f..00000000 --- a/.local/bin/polybar_scripts/toggle_bluetooth.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ] -then - bluetoothctl power on -else - bluetoothctl power off -fi