Skip to content

Instantly share code, notes, and snippets.

@davidrothera
Created February 17, 2018 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidrothera/f5ab8c55a58ef43f49665bd409c6dd8b to your computer and use it in GitHub Desktop.
Save davidrothera/f5ab8c55a58ef43f49665bd409c6dd8b to your computer and use it in GitHub Desktop.
Fix A2DP with Gnome/GDM

Issue

For some reason because GDM creates a pulseaudio session it ends up stealing the A2DP sink profile from the userland process.

Fix

Stop GDM pulse starting bluetooth discovery

  • Edit /etc/pulse/default.pa
# Comment out
load-module module-bluetooth-discover

Make userland pulse start discovery

  • Edit /usr/bin/start-pulseaudio-x11
# Add the following before the closing fi
/usr/bin/pactl load-module module-bluetooth-discover
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment