Enable Bluetooth A2DP auto-connect in WirePlumber (#5336)

* Enable Bluetooth A2DP auto-connect in WirePlumber

* Harden Bluetooth A2DP migration
This commit is contained in:
Diego Rios
2026-05-07 16:48:26 +02:00
committed by GitHub
parent 4831c883e5
commit 9c3520caf9
4 changed files with 42 additions and 2 deletions
@@ -0,0 +1,18 @@
## Auto-connect A2DP playback/capture profiles on Bluetooth devices.
## This helps speakers and receivers expose their audio profiles without
## requiring manual PipeWire/WirePlumber recovery.
monitor.bluez.rules = [
{
matches = [
{
device.name = "~bluez_card.*"
}
]
actions = {
update-props = {
bluez5.auto-connect = [ a2dp_sink a2dp_source ]
}
}
}
]