voidrice/.local/bin/polybar_scripts/toggle_bluetooth
2020-02-12 13:36:10 -05:00

9 lines
145 B
Bash
Executable File

#!/usr/bin/env sh
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
then
bluetoothctl power on
else
bluetoothctl power off
fi