From 532f4310d023ee2a405f10b7c21560b9e082b6c9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 28 Jan 2026 12:20:20 +0100 Subject: [PATCH] Fix audio mixing on ROG in migration as well --- migrations/1768916735.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/migrations/1768916735.sh b/migrations/1768916735.sh index 6d65e125..dd0759d1 100644 --- a/migrations/1768916735.sh +++ b/migrations/1768916735.sh @@ -1,3 +1,9 @@ -echo "Fix microphone gain on Asus ROG laptops with ALC285 Realtek" +echo "Fix microphone gain and audio mixing on Asus ROG laptops" source "$OMARCHY_PATH/install/config/hardware/fix-asus-rog-mic.sh" +source "$OMARCHY_PATH/install/config/hardware/fix-asus-rog-audio-mixer.sh" + +if [[ "$(cat /sys/class/dmi/id/sys_vendor 2>/dev/null)" == "ASUSTeK COMPUTER INC." ]] && + grep -q "ROG" /sys/class/dmi/id/product_family 2>/dev/null; then + omarchy-restart-pipewire +fi