Files
dotfiles/bin/§bluetooth-toggle.sh
2025-09-03 10:49:03 +02:00

7 lines
126 B
Bash
Executable File

#!/usr/bin/env bash
if bluetoothctl show | grep -q 'Powered: no'; then
bluetoothctl power on
else
bluetoothctl power off
fi