Dots/configs/eww/scripts/toggle_bluetooth
2023-04-19 11:04:08 +01:00

8 lines
145 B
Bash
Executable file

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