dotfiles/bin/btoggle.sh

5 lines
164 B
Bash
Raw Normal View History

2022-04-11 15:58:15 +02:00
#!/usr/bin/env bash
MAC=94:DB:56:79:7D:86
bluetoothctl info "$MAC" | grep -q 'Connected: yes' &&
bluetoothctl disconnect "$MAC" || bluetoothctl connect "$MAC"