scripts/xbox.sh
2025-03-26 21:37:21 +01:00

11 lines
209 B
Bash
Executable File

#!/bin/bash
device="40:8E:2C:03:25:E5"
if bluetoothctl info "$device" | grep 'Connected: yes' -q; then
echo "Redan uppkopplad"
bluetoothctl disconnect "$device"
else
bluetoothctl connect "$device"
fi