Created
July 16, 2020 01:24
-
-
Save Kangaroux/46bb853f13a637c071b1f890e1217724 to your computer and use it in GitHub Desktop.
Disable automatic audio device switching for linux, ubuntu (USB, controller, dualshock)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you want to stop your system from automatically switching audio devices, | |
# there is a simple edit to your PulseAudio config to disable that feature. | |
# Open PulseAudio config | |
sudo vim /etc/pulse/default.pa | |
# Comment out the line with "load-module module-switch-on-connect" | |
# Restart PulseAudio | |
pulseaudio -k |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks :)