]> git.ekhem.eu.org Git - guix.git/commitdiff
Specify full log-file path.
authorJakub Czajka <jakub@ekhem.eu.org>
Thu, 7 Dec 2023 19:52:49 +0000 (20:52 +0100)
committerJakub Czajka <jczajka@google.com>
Sun, 24 Dec 2023 18:53:24 +0000 (19:53 +0100)
XDG_LOG_HOME is no longer available when shephard starts.

conf/home/notify.scm
conf/home/status-bar.scm
conf/home/wallpaper.scm
conf/home/xcompmgr.scm

index 3f98cab30d2bc3e1ca4ac0d7370fff3a4faafc8f..7304e779d8c49891d3638ace645c2fe32256e298 100644 (file)
@@ -37,8 +37,8 @@
               #:directory
               (getenv "HOME")
               #:log-file
-              (string-append (getenv "XDG_LOG_HOME")
-                             "/dunst.log")))
+              (string-append (getenv "HOME")
+                             "/.local/var/log/dunst.log")))
      (stop #~(make-kill-destructor))
      (documentation "")))))
 
index 30466d5952f6414f6342027541ca9db2b7019309..a62128e43936aa9dd5263fff63cdb1631549f807 100644 (file)
@@ -66,8 +66,8 @@ bar. The output should be redirected to the desktop.")
               #:directory
               (getenv "HOME")
               #:log-file
-              (string-append (getenv "XDG_LOG_HOME")
-                             "/status_bar.log")))
+              (string-append (getenv "HOME")
+                             "/.local/var/log/status_bar.log")))
      (stop #~(make-kill-destructor))
      (documentation "")))))
 
index f98f8a45c2a43fb8789d38a9809e0f3f82449b60..4a714124f80b5a7b3636af99606e273ab180db01 100644 (file)
@@ -66,8 +66,8 @@ this image as the system's wallpaper.")
               #:directory
               (getenv "HOME")
               #:log-file
-              (string-append (getenv "XDG_LOG_HOME")
-                             "/wallpaper.log")))
+              (string-append (getenv "HOME")
+                             "/.local/var/log/wallpaper.log")))
      (stop #~(make-kill-destructor))
      (documentation "")))))
 
index 96e3a89fa014c6f509c5a4d15a29998640ca59f5..1aacc211906eee92683b3838639a2150f1e1d161 100644 (file)
@@ -20,8 +20,8 @@
               #:directory
               (getenv "HOME")
               #:log-file
-              (string-append (getenv "XDG_LOG_HOME")
-                             "/xcompmgr.log")))
+              (string-append (getenv "HOME")
+                             "/.local/var/log/xcompmgr.log")))
    (stop #~(make-kill-destructor))
    (documentation "Shepherd service which runs `xcompmgr` - a simple
 compositor.")))