From: Jakub Czajka Date: Thu, 7 Dec 2023 19:52:49 +0000 (+0100) Subject: Specify full log-file path. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=73d9603a9844f0c5df6dac6e6ea4971107ce7d06;p=guix.git Specify full log-file path. XDG_LOG_HOME is no longer available when shephard starts. --- diff --git a/conf/home/notify.scm b/conf/home/notify.scm index 3f98cab..7304e77 100644 --- a/conf/home/notify.scm +++ b/conf/home/notify.scm @@ -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 ""))))) diff --git a/conf/home/status-bar.scm b/conf/home/status-bar.scm index 30466d5..a62128e 100644 --- a/conf/home/status-bar.scm +++ b/conf/home/status-bar.scm @@ -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 ""))))) diff --git a/conf/home/wallpaper.scm b/conf/home/wallpaper.scm index f98f8a4..4a71412 100644 --- a/conf/home/wallpaper.scm +++ b/conf/home/wallpaper.scm @@ -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 ""))))) diff --git a/conf/home/xcompmgr.scm b/conf/home/xcompmgr.scm index 96e3a89..1aacc21 100644 --- a/conf/home/xcompmgr.scm +++ b/conf/home/xcompmgr.scm @@ -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.")))