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
}
}
}
]

5
migrations/1768429270.sh Normal file
View File

@@ -0,0 +1,5 @@
echo "Fix volume controls for laptops with problematic Realtek codecs (like Asus G14)"
mkdir -p ~/.config/wireplumber/wireplumber.conf.d/
cp $OMARCHY_PATH/config/wireplumber/wireplumber.conf.d/alsa-soft-mixer.conf ~/.config/wireplumber/wireplumber.conf.d/
systemctl --user restart wireplumber