aboutsummaryrefslogtreecommitdiffstats
path: root/oni/home/services/stumpwm
diff options
context:
space:
mode:
authorGravatar Tom Willemse2025-04-22 10:30:29 -0700
committerGravatar Tom Willemse2025-04-22 10:30:29 -0700
commit6ee7e001ef6d99681418d71baf01f85a1c387811 (patch)
treeccf00534ea5e212c5994b48ba9e0026fc0a66f0c /oni/home/services/stumpwm
parentd5e63c06a024aabcb151e9e5a1f0ad7e5c2b140d (diff)
downloadnew-dotfiles-6ee7e001ef6d99681418d71baf01f85a1c387811.tar.gz
new-dotfiles-6ee7e001ef6d99681418d71baf01f85a1c387811.zip
stumpwm: Make screen locking program configurable
On my work laptop this needs to just be ‘/usr/bin/i3lock’ because the libraries in Guix are incompatible with those on Pop!_OS.
Diffstat (limited to 'oni/home/services/stumpwm')
-rw-r--r--oni/home/services/stumpwm/config2
1 files changed, 1 insertions, 1 deletions
diff --git a/oni/home/services/stumpwm/config b/oni/home/services/stumpwm/config
index 3f44f74..12c22bc 100644
--- a/oni/home/services/stumpwm/config
+++ b/oni/home/services/stumpwm/config
@@ -25,7 +25,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" ,(format nil "~a --nofork --color=000000" *locker-program*))
:wait nil
:status-hook #'run-screen-unlocked-hook))