Use forkexec instead of system constructor for picom

The example was using a system constructor with a kill destructor, but I don't
think those two work together. I prefer having the application run in the
foreground and using the shepherd way of forking so I have more control.
This commit is contained in:
Tom Willemse 2022-04-20 17:24:05 -07:00
parent 211bfcb544
commit a0034e7659

View file

@ -97,11 +97,10 @@
;(requirement '(xorg-server))
(auto-start? #t)
(start
#~(make-system-constructor
(string-join
(list #$(file-append (home-picom-configuration-package config) "/bin/picom")
"--config" #$(home-picom-config-file config)
"-b"))))
#~(make-forkexec-constructor
(list #$(file-append (home-picom-configuration-package config) "/bin/picom")
"--config" #$(home-picom-config-file config))
#:log-file (format #f "~a/.local/var/log/picom.log" (getenv "HOME"))))
(stop #~(make-kill-destructor)))))
(define (home-picom-extension old-config extension-configs)