1 # wmmixer - A mixer designed for WindowMaker
2 # 8 Jun 2002 Release 1.4
3 # Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
4 # This software comes with ABSOLUTELY NO WARRANTY
5 # This software is free software, and you are welcome to redistribute it
6 # under certain conditions
7 # See the README file for a more complete notice.
10 # Should be saved as ~/.wmmixer
11 # Comments and blank lines mostly allowed
13 # The format of this file is a series of commands:
16 # Adds a channel to the sequence. %i specifies a channel.
17 # These are the values from my <linux/soundcard.h>:
18 # SOUND_MIXER_VOLUME 0
20 # SOUND_MIXER_TREBLE 2
23 # SOUND_MIXER_SPEAKER 5
27 # There are a few more, but these are the important ones (and are
28 # those identified with appropriate icons).
29 # Ths channel added becomes the current channel for subsequent
30 # setmono, setleft, setright and setrecsrc commands.
33 # Similar to addchannel, except the channel is not actually added
34 # to the sequence, merely made the current channel for subsequent
35 # setmono, setleft, setright and setrecsrc commands.
38 # Sets both left and right volumes for the current channel.
39 # The channel may be mono or stereo.
40 # The value specified must be an integer in the range 0 to 100.
43 # Sets left volume for the current channel.
44 # Do not use on a mono channel.
45 # The value specified must be an integer in the range 0 to 100.
48 # Sets right volume for the current channel.
49 # Do not use on a mono channel.
50 # The value specified must be an integer in the range 0 to 100.
52 # setrecsrc TRUE | FALSE
53 # Enable or disable recording from the current channel.
54 # Ignored if the channel does not support it.
55 # The value is TRUE or FALSE.
57 # At least one channel must be added!