Post

Bluetooth audio on Arch/Manjaro: installing pulseaudio-bluetooth

Bluetooth connects but audio doesn’t work, or the device doesn’t even show up in the sound options? You’re probably missing the PulseAudio module for Bluetooth:

1
sudo pacman -Sy pulseaudio-bluetooth --needed --noconfirm

Then, enable and start the service:

1
2
systemctl enable bluetooth.service
systemctl start bluetooth.service

--needed avoids reinstalling if it’s already installed. After that, restart PulseAudio (killall pulseaudio or log out/log in) and the Bluetooth device should appear normally in the audio options.

This post is licensed under CC BY 4.0 by the author.