dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

audiomixer (214B)


      1 #!/bin/sh
      2 
      3 if type cmixer >/dev/null 2>&1; then
      4 	cmixer
      5 elif type pulsemixer >/dev/null 2>&1; then
      6 	pulsemixer
      7 elif type alsamixer >/dev/null 2>&1; then
      8 	alsamixer
      9 else
     10 	(>&2 echo "error: no audio mixer found")
     11 fi