Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
# PulseAudio plugin configuration
2
# $Id: pulse-default.conf,v 1.3 2008/03/09 15:50:49 lkundrak Exp $
3
 
4
# Let's create a virtual device "pulse" for mixer and PCM
5
 
6
pcm.pulse {
7
    type pulse
8
    hint {
9
        description "PulseAudio Sound Server"
10
    }
11
}
12
 
13
ctl.pulse {
14
    type pulse
15
    hint {
16
        description "PulseAudio Sound Server"
17
    }
18
}
19
 
20
# Let's make it the default!
21
 
22
pcm.!default {
23
    type pulse
24
    hint {
25
        description "Default"
26
    }
27
}
28
 
29
ctl.!default {
30
    type pulse
31
    hint {
32
        description "Default"
33
    }
34
}
35