diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-03-17 09:13:15 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-03-17 09:13:15 +0900 |
| commit | 86445b608698640341953c43d386476f08e97352 (patch) | |
| tree | d58324cce8ba582ea8cb70faa7f43f1e50d10279 /ar/.config/wireplumber/wireplumber.conf.d | |
| parent | d043f8be7e58ddf61e8f296eb369d3cef87d96df (diff) | |
deleted main.lua.d/51-device-priority.conf, modified bin/mounter, modified statusbar/sb-ecrypt, modified bin/unmounter, created wireplumber.conf.d/
Diffstat (limited to 'ar/.config/wireplumber/wireplumber.conf.d')
| -rw-r--r-- | ar/.config/wireplumber/wireplumber.conf.d/51-device-priority.conf | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/ar/.config/wireplumber/wireplumber.conf.d/51-device-priority.conf b/ar/.config/wireplumber/wireplumber.conf.d/51-device-priority.conf new file mode 100644 index 0000000..13c4987 --- /dev/null +++ b/ar/.config/wireplumber/wireplumber.conf.d/51-device-priority.conf @@ -0,0 +1,74 @@ +monitor.alsa.rules = [ + { + matches = [ + { + node.name = "~alsa_output.*hdmi.*" + } + ] + actions = { + update-props = { + priority.driver = 2000 + priority.session = 2000 + } + } + } + { + matches = [ + { + node.name = "~alsa_output.*analog.*" + } + ] + actions = { + update-props = { + priority.driver = 1000 + priority.session = 1000 + } + } + } +] + +monitor.bluez.rules = [ + { + matches = [ + { + device.name = "~bluez_card.*" + } + ] + actions = { + update-props = { + priority.driver = 3000 + priority.session = 3000 + bluez5.auto-connect = [ a2dp_sink ] + } + } + } +] + +node.rules = [ + { + matches = [ + { + node.name = "~bluez_output.*" + } + ] + actions = { + update-props = { + priority.driver = 3000 + priority.session = 3000 + } + } + } + { + matches = [ + { + node.name = "~bluez_input.*" + } + ] + actions = { + update-props = { + priority.driver = 3000 + priority.session = 3000 + } + } + } +] |
