stumpwm/sound.lisp @ ea681bd9c52d

Tweak stump
author Steve Losh <steve@stevelosh.com>
date Tue, 19 Mar 2024 16:09:11 -0400
parents 4673e928c08e
children 4e1d6d6873fe
(in-package :stumpwm-user)

(defun volume% ()
  (_ (run-shell-command "amixer sget Master" t)
    (string-grep "Front Left:" _ :first-only t)
    (string-split "[]" _)
    second
    (string-trim "%" _)
    parse-integer))

(defcached (volume :seconds 30)
  (volume%))

(defcommand mute () ()
  (run-shell-command "mute")
  (echo "Muted."))

(defcommand volume-up () ()
  (run-shell-command "amixer -q sset Master 5%+")
  (volume/uncache)
  (message "Volume: ~D%" (volume)))

(defcommand volume-down () ()
  (run-shell-command "amixer -q sset Master 5%-")
  (volume/uncache)
  (message "Volume: ~D%" (volume)))

(defun volume-modeline (ml)
  (declare (ignore ml))
  (format nil "~D%" (volume)))

(add-screen-mode-line-formatter #\V #'volume-modeline)

#; Scratch --------------------------------------------------------------------
(volume)