Skip to content

Instantly share code, notes, and snippets.

@Daniel-M
Created May 17, 2017 17:12
Show Gist options
  • Save Daniel-M/57a7b23800110e43b0e8350dced96796 to your computer and use it in GitHub Desktop.
Save Daniel-M/57a7b23800110e43b0e8350dced96796 to your computer and use it in GitHub Desktop.
Alsa sound configuration in /etc/asound.conf
# virtual PCM pointed to by !default
pcm.plugequal {
type equal;
# Software mixing through dmix. All sources played at once
slave.pcm "plug:dmix";
}
# The sounds are processed with an equalizer
# another alsa plugin
pcm.!default {
type plug;
slave.pcm plugequal;
}
# This enables to set the equalizator settings
# by enabling the control
ctl.equal {
type equal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment