My speakers are plugged via optical output. Each time my screen wake up from sleep, pusleaudio automatically switch to HDMI audio where nothing is plugged.
How can I prevent that ?
My speakers are plugged via optical output. Each time my screen wake up from sleep, pusleaudio automatically switch to HDMI audio where nothing is plugged.
How can I prevent that ?
Let me know if this doesn't work for you and I'll delete my answer. I don't have your speaker system but this should work.
When signal is lost to during sleep, Pulse Audio is automatically configured to activate the default source (your HDMI). Upon resume the sound device is still on HDMI. To override this setting, tell Pulse Audio to never switch sound devices automatically:
/etc/pulse/default.paload-module module-switch-on-port-available# at the beginning of the line to disable automatic port switchingpulseaudio -k to reload configurationWinEunuuchs2Unix's post is correct, but I had to adjust module-switch-on-connect instead of module-switch-on-port-available. Here's an easy one-liner:
sudo sed -i 's/^load-module module-switch-on-connect$/# load-module module-switch-on-connect/g' /etc/pulse/default.pa && pulseaudio -k
By the way just related I had the same problem. There seem to be a bug report up on Launchpad https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1847570