BluetoothをオンにしてBluetoothヘッドセットに接続するビデオのbashスクリプトを「コピー」しました。
#!/bin/bash
systemctl enable bluetooth.service
systemctl start bluetooth.service
echo -e 'power on \nconnect MAC_Address \nquit' | bluetoothctl
ヘッドセットを起動してこのスクリプトを使用してコンピュータに接続しようとすると、接続されていないか、接続に少し時間がかかります(スクリプトを実行してから数秒かかります)。
あるいは、接続のためにスクリプトを再実行する必要があるかもしれません。
しかし、時には完全に接続されている場合があります。
私のスクリプトに問題がありますか?