mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Enable Bluetooth A2DP auto-connect in WirePlumber * Harden Bluetooth A2DP migration
19 lines
413 B
Plaintext
19 lines
413 B
Plaintext
## 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 ]
|
|
}
|
|
}
|
|
}
|
|
]
|