mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
bug with run-program
This commit is contained in:
parent
87e1c98f88
commit
da2178c43a
|
|
@ -19,7 +19,7 @@
|
|||
"Play the *ALERT-SOUND-FILE* if exists."
|
||||
(when (probe-file *alert-sound-file*)
|
||||
(uiop:run-program
|
||||
"~a ~a" *sound-play-command* (namestring *alert-sound-file*))))
|
||||
(format nil "~a ~a" *sound-play-command* (namestring *alert-sound-file*)))))
|
||||
|
||||
|
||||
(defun alert-message (alert-hour alert-minute message)
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ at the end of each pomodoro.")
|
|||
"Play the *BELL-SOUND-FILE* if exists."
|
||||
(when (probe-file *bell-sound-file*)
|
||||
(uiop:run-program
|
||||
"~a ~a" *sound-play-command* (namestring *bell-sound-file*))))
|
||||
(format nil "~a ~a" *sound-play-command* (namestring *bell-sound-file*)))))
|
||||
|
||||
|
||||
(defun notify-break ()
|
||||
|
|
|
|||
Loading…
Reference in a new issue