From 1cfbafe4abe6b828f5f0b5f3333a76f4c52d08cd Mon Sep 17 00:00:00 2001 From: dbroqua Date: Wed, 5 Jan 2022 08:05:28 +0100 Subject: [PATCH] Added script to connect bluetooth headset --- bin/btpair.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/btpair.sh diff --git a/bin/btpair.sh b/bin/btpair.sh new file mode 100755 index 0000000..518670f --- /dev/null +++ b/bin/btpair.sh @@ -0,0 +1,7 @@ +#! /bin/bash + +HEADPHONE="88:D0:39:7D:6A:70" + +bluetoothctl trust ${HEADPHONE} +bluetoothctl disconnect ${HEADPHONE} +bluetoothctl connect ${HEADPHONE}