Turn audio soft mixing into an opt-in toggle

It causes issues on some machines, but is required on the Asus G14
This commit is contained in:
David Heinemeier Hansson
2026-01-17 14:43:59 -05:00
parent 5ff76df5e4
commit 21514dc577
3 changed files with 18 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
## Use software volume control for all ALSA devices.
## This prevents hardware mixer quirks (like muffled audio on Realtek codecs)
## and provides consistent volume behavior across all hardware.
monitor.alsa.rules = [
{
matches = [
{
device.name = "~alsa_card.*"
}
]
actions = {
update-props = {
api.alsa.soft-mixer = true
}
}
}
]