diff options
Diffstat (limited to 'gnu/home/services/desktop.scm')
-rw-r--r-- | gnu/home/services/desktop.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm index fc96ce9295..859dba776a 100644 --- a/gnu/home/services/desktop.scm +++ b/gnu/home/services/desktop.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2022-2023 Ludovic Courtès <[email protected]> +;;; Copyright © 2022-2023, 2025 Ludovic Courtès <[email protected]> ;;; Copyright © 2022 ( <[email protected]> ;;; Copyright © 2023 conses <[email protected]> ;;; Copyright © 2023 Janneke Nieuwenhuizen <[email protected]> @@ -353,7 +353,6 @@ according to time of day."))) (modules '((shepherd support) ;for %user-log-dir (srfi srfi-1) (srfi srfi-26))) - (one-shot? #t) (start #~(lambda _ (fork+exec-command (list @@ -369,7 +368,8 @@ according to time of day."))) (remove (cut string-prefix? "DISPLAY=" <>) (default-environment-variables))) #:log-file - (string-append %user-log-dir "/unclutter.log"))))))) + (string-append %user-log-dir "/unclutter.log")))) + (stop #~(make-kill-destructor))))) (define home-unclutter-service-type (service-type |