Stumpwm: Use function instead of lambda

This commit is contained in:
Tom Willemsen 2013-04-09 16:51:39 +02:00
parent 13b625585a
commit d90fe264ea

View file

@ -117,15 +117,18 @@
"Open URxvt"
(run-or-raise *urxvt-program* '(:class "URxvt")))
(defun run-stumpwm-hook-on-exit (process)
"Run `*screen-unlocked-hook*' if PROCESS' status is `:exited'."
(when (eq (sb-ext:process-status process) :exited)
(run-hook *screen-unlocked-hook*)))
(defcommand lock-screen () ()
"Lock the screen using i3lock. Run *lock-screen-hook* before locking
it and run *screen-unlocked-hook* after it has been unlocked."
(run-hook *lock-screen-hook*)
(sb-ext:run-program
"/usr/bin/i3lock" '("-n" "-c" "000000") :wait nil
:status-hook (lambda (p)
(when (eq (sb-ext:process-status p) :exited)
(run-hook *screen-unlocked-hook*)))))
:status-hook #'run-stumpwm-hook-on-exit))
(set-bg-color (colour :dwhite))
(set-border-color (colour :lwhite))