summaryrefslogtreecommitdiffstats
path: root/.config/alsa/asoundrc
blob: 38722f086dfe88b4767eba52b27dcccfa3d24322 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Find and use input "Microphone" for input
pcm.usb
{
    type hw
    card Microphone
}
pcm.!default
{
    type asym
    playback.pcm
    {
    	# Use the dmix plug to allow multiple outputs.
        type plug
        slave.pcm "dmix"
    }
    capture.pcm
    {
        type plug
        slave.pcm "usb"
    }
}