diff options
author | Yanes Checcacci Balod <yanes@pobox.com> | 2014-04-24 17:20:34 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-04-27 12:18:16 -0500 |
commit | 439167b13392d202238e25c87cd0ea9e31ca4feb (patch) | |
tree | e436b31b56d420de79e378b39b45fb23d33edb80 /audio/volume.app/config.h.in | |
parent | 3bd30f3ac541a5d97a97ca6e3296afc77db0a568 (diff) | |
download | slackbuilds-439167b13392d202238e25c87cd0ea9e31ca4feb.tar.gz |
audio/volume.app: Added (windowmaker volume control dockapp).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/volume.app/config.h.in')
-rw-r--r-- | audio/volume.app/config.h.in | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/audio/volume.app/config.h.in b/audio/volume.app/config.h.in new file mode 100644 index 0000000000..7bba141e6c --- /dev/null +++ b/audio/volume.app/config.h.in @@ -0,0 +1,27 @@ +/* config.h */ + +#define _GNU_SOURCE +#define VERSION "@VERSION@" + +#ifndef DEBUG +#define NDEBUG +#endif + +/* All these settings should eventually be configurable via libPropList */ + +/* Note that within the program, the first source is 0 and not 1 + */ +#define DEFAULT_SOURCE 0 + +#define DEFAULT_MIXER_DEVICE "/dev/mixer" + +/* units: seconds + */ +#define MAX_DOUBLE_CLICK_TIME 0.5 + +/* X11 wheel button codes (for wheel mice) + */ +#define BUTTON_WHEEL_UP 4 +#define BUTTON_WHEEL_DOWN 5 + +/* end config.h */ |