3

I use ubuntu 12.10 64 bit. Every time I turn my computer on, I have to manually connect to my bluetooth speakers and change audio output to bluetooth device.

I've found this question: Autoconnecting Bluetooth Devices.

Adding a following line to /etc/pulse/default.pa doesn't help.

load-module module-switch-on-connect

I also installed stream2ip, but it says I don't have a bluetooth device.

Is there a way to accomplish this automatization?

ezpn
  • 325
  • Doesn't work in ubuntu 16.04. Check: https://askubuntu.com/questions/922072/autoconnect-to-a-bluetooth-speaker-in-ubuntu-16-04 – Arno Jun 12 '17 at 07:50

2 Answers2

4

Important note: due to changes in the d-bus protocol introduced with Bluez5 bt-autoconnect <= 0.2.2 will at present only work with Bluez4.

bt-autoconnect

There is a python tool bt-autoconnect designed to connect to an existing audio headset as soon as it becomes available. This is useful in case we do not want to load the pulseaudio module-switch-on-connect in our default.pa (see this question).

It will also connect a known device with the Bluetooth adapter (disable this if you want to connect manually), and it will be able to switch the audio sink to the Bluetooth sink without interrupting playback of an audio stream.

enter image description here

In case only one Bluetooth audio device is registered in Bluez settings we can choose "Auto" to autodetect this device. If we had paired more than one device we may need to specify the device by its MAC. If we do not specify the MAC bt-autoconnect will take the first device in the list which may not be the one we want.

If we choose to add bt-autoconnect to the Startup Applications it will start at login minimized to its Application Indicator only

In the Application Indicator menu we are able to switch between HSP (low quality telephony) profile with headset microphone enabled, or A2DP high quality audio profile where the microphone will not be available, provided this is supported by our headset.

enter image description here

Takkat
  • 142,284
0

For all those having problems with bt-autoconnect because it does not support Bluez5, here is my workaround:

  1. I added module-switch-on-connect to the pulseaudio modules.
  2. I paired my stereo with my laptop using the GUI
  3. I added the following to my startup and wakeup scripts (my stereo's bluetooth is usually on when I wakeup or start my computer):

    rfkill unblock bluetooth
    bluez-test-audio connect MAC-ADDRESS
    
Suzana
  • 392