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

11 lines
209 B
Bash
Executable File

#!/bin/bash
device="4C:B9:9B:D2:FC:FF"
if bluetoothctl info "$device" | grep 'Connected: yes' -q; then
echo "Redan uppkopplad"
bluetoothctl disconnect "$device"
else
bluetoothctl connect "$device"
fi