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
2023-01-18 18:03:30 +01:00
MAC=88:C9:E8:AD:73:E8
2022-04-11 15:58:15 +02:00
bluetoothctl info "$MAC" | grep -q 'Connected: yes' &&
bluetoothctl disconnect "$MAC" || bluetoothctl connect "$MAC"