Emacs lisp code to increase/decrease system volume from within Emacs.

(defun inc-volume ()
  "Increase system volume."
 
  (interactive)
  (start-process "aumix" "*Messages*" "/usr/bin/aumix" "-v" "+10"))
 
(defun dec-volume ()
  "Decrease system volume."
 
  (interactive)
  (start-process "aumix" "*Messages*" "/usr/bin/aumix" "-v" "-10"))
 
volume-el.txt · Last modified: 2005/07/31 04:11 by 210.18.190.194
 
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki
This work is licensed under the GNU Free Documentation License..