bug with run-program

This commit is contained in:
Vladimir Dikan 2022-05-07 23:57:07 +02:00
parent 87e1c98f88
commit da2178c43a
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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 ()