Last active
December 17, 2015 08:19
-
-
Save stesla/5579167 to your computer and use it in GitHub Desktop.
When I upgraded to Ubuntu 11.10, I removed PulseAudio entirely because amixer didn't work right with it, and XMonad.Actions.Volume wraps amixer. Well, it turns out all I needed was to add this file at ~/.asoundrc to make ALSA default to the pulse device, and it all would have worked (as it is now).
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
pcm.!default { | |
type pulse | |
} | |
ctl.!default { | |
type pulse | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment