Mono, please
It bugs me when I hear stereo audio that's only using one channel. By default Gnome alsa mixer didn't include a 'mix mono' option, so I figured out how to do so via ~/.asoundrc
- Create a ~/.asoundrc if one does not exist.
- Edit it per below.
- Save it.
- Restart any sound-using programs.
- Rename the ‘pcm.!default’ to something (pcm.notdefault) & repeat 4 to disable mono.
pcm.!default {type plug
slave {pcm "d"
channels 1
}
}
pcm.d {type plug
slave {pcm "hw:0,0"
}
}This assumes your default audio device is hw:0,0 If it’s not, you’ll need to figure out what it is. One way to do that is to study the output of:
aplay -LlThere’s probably some way you can add a checkbox, or make this more automated. I’ll look at that later. For now I’m just glad to have the option of monaural audio when I need it. Upon reflection having monaural audio is also a boon to people who actually are deaf in one ear; they can then hear the second channel mixed in. I just wish I could figure out how to add this as a setting in alsa mixer so it would be a little simpler to switch.