Fix volume controls on Asus G14

This commit is contained in:
David Heinemeier Hansson
2026-01-14 17:40:53 -05:00
parent 93079858f1
commit bab0004d08
2 changed files with 23 additions and 0 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
}
}
}
]