Fix arguments for locking the screen

This commit is contained in:
Tom Willemse 2023-04-22 00:28:43 -07:00
parent 1d92f09835
commit 8e4c0c983e

View file

@ -22,7 +22,7 @@ Run `*screen-locking-hook*' before locking it and run `*screen-unlocked-hook*'
after it has been unlocked."
(run-hook *screen-locking-hook*)
(sb-ext:run-program
*shell-program* '("-c" "i3lock" "--nofork" "--color=000000")
*shell-program* '("-c" "i3lock --nofork --color=000000")
:wait nil
:status-hook #'run-screen-unlocked-hook))