aboutsummaryrefslogtreecommitdiff
path: root/home-configuration.scm
diff options
context:
space:
mode:
authorTimo Wilken2022-10-22 18:13:27 +0200
committerTimo Wilken2022-10-22 18:13:27 +0200
commit6e35b13cc5c9a17d5a60001176fc99907e9f6c3a (patch)
tree6bb6087bc7f2c89364c905c1f4f9799da0ab703a /home-configuration.scm
parentcdc8fcec2746621f4f87c21e0d71e806e2bcedf0 (diff)
Fix xrdb service paths
Diffstat (limited to 'home-configuration.scm')
-rw-r--r--home-configuration.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/home-configuration.scm b/home-configuration.scm
index 21758522..521b5794 100644
--- a/home-configuration.scm
+++ b/home-configuration.scm
@@ -210,8 +210,8 @@ replacement spec (to which `regexp-substitute/global' is applied)."
(start #~(lambda _
;; TODO: put these files in ~/.config.
(invoke #$(package-binary "xrdb") "-merge"
- (string-append (getenv "HOME") ".Xdefaults")
- (string-append (getenv "HOME") ".Xresources")))))
+ (string-append (getenv "HOME") "/.Xdefaults")
+ (string-append (getenv "HOME") "/.Xresources")))))
(shepherd-service
(documentation "Set up X displays on login.")
(provision '(xorg-setup))