# wmmixer - a mixer designed for WindowMaker
# 07/05/98  Release 0.8
# Copyright (C) 1998  Sam Hawker <shawkie@geocities.com>
# This software comes with ABSOLUTELY NO WARRANTY
# This software is free software, and you are welcome to redistribute it
# under certain conditions
# See the README file for a more complete notice.

# User config file. Should be placed in ~/
# Comments and blank lines mostly allowed

# The format of this file is a series of commands:

# addchannel %i
#    adds a channel to the sequence. %i specifies a channel.
#    these are the values from my <linux/soundcard.h>:
#       SOUND_MIXER_VOLUME    0
#       SOUND_MIXER_BASS      1
#       SOUND_MIXER_TREBLE    2
#       SOUND_MIXER_SYNTH     3
#       SOUND_MIXER_PCM       4
#       SOUND_MIXER_SPEAKER   5
#       SOUND_MIXER_LINE      6
#       SOUND_MIXER_MIC       7
#       SOUND_MIXER_CD        8
#    there are a few more, but these are the important ones (and are
#    those identified with appropriate symbols)

# setmono %i
#    only valid at some point after an addchannel command.
#    sets both left and right volumes for the last channel added.
#    the channel may be mono or stereo.
#    the value specified must be an integer in the range 0 to 100

# setleft %i
#    only valid at some point after an addchannel command.
#    sets left volume for the last channel added.
#    do not use on a mono channel.
#    the value specified must be an integer in the range 0 to 100

# setright %i
#    only valid at some point after an addchannel command.
#    sets right volume for the last channel added.
#    do not use on a mono channel.
#    the value specified must be an integer in the range 0 to 100

# setrecsrc TRUE | FALSE
#    only valid at some point after an addchannel command.
#    enable or disable recording from the last channel added.
#    ignored if the channel does not support it.
#    the value is "TRUE" or "FALSE"
#
#    (setrecsrc entries are used to build a complete recsrc mask
#    and a single instruction then sent to the mixer device, so
#    order of entries is unimportant)

# At least one channel must be added!

addchannel 0

addchannel 3

addchannel 4

addchannel 6

addchannel 7

addchannel 8





