README 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ========================================================================
  2. Volume.app -- a simple windowmaker volume control dockapp
  3. ========================================================================
  4. This is a simple volume control for the AfterStep / BlackBox /
  5. Window Maker dock. Volume.app is intended to be an extremely simple,
  6. efficient, and attractive interface to a system's sound mixer.
  7. Currently, only OSS mixer interface is supported. ALSA mixer can be used
  8. through ALSA's OSS emulation.
  9. ========================================================================
  10. NOTE: The hacks/mods are for "ALSA's OSS emulation" in ALSA systems.
  11. NOTE2: There are two 'mod' files: "config.h.in.mod" and
  12. "volume.app.c.mod".
  13. If you want to use them, simply rename them to each "original
  14. filename" (remove ".mod" on filename).
  15. "volume.app.c.mod" is a hack to fix the mute/unmute problem
  16. for ALSA systems. (It uses "amixer" command as background).
  17. "config.h.in.mod" is just a covenience to set some parameters.
  18. eg: If you notice that the app is not running on the right mixer
  19. (more than 1 soundcard), you may try to set the default mixer
  20. before creating the package!
  21. 'cat /proc/asound/oss/sndstat' and search the "Mixers"
  22. section. Locate the desired 'mixer number' and then modify
  23. file "config.h.in.mod" at "DEFAULT_MIXER_DEVICE" parameter.
  24. Eg2: if desired mixer is "2", modify "config.h.in.mod"
  25. as below:
  26. DEFAULT_MIXER_DEVICE "/dev/mixer"
  27. ( to )
  28. DEFAULT_MIXER_DEVICE "/dev/mixer2"
  29. Again, do not forget to rename the file "config.h.in.mod" to
  30. "config.h.in" before creating the package.
  31. ========================================================================