summaryrefslogtreecommitdiff
path: root/gnu/home/services/xdg.scm
diff options
context:
space:
mode:
authorAndrew Tropin <andrew@trop.in>2022-03-29 11:28:30 +0300
committerLudovic Courtès <ludo@gnu.org>2022-04-08 20:13:45 +0200
commit5832d9fb601c7d4ec5380654db2b62b906bc658f (patch)
tree72f5d542a259f48736623f5f9bc271d2b6ded88b /gnu/home/services/xdg.scm
parent868da34d54365023223a4ff7520043ba55ad64e8 (diff)
downloadguix-patches-5832d9fb601c7d4ec5380654db2b62b906bc658f.tar
guix-patches-5832d9fb601c7d4ec5380654db2b62b906bc658f.tar.gz
home: symlink-manager: Remove appending of leading dot.
* gnu/home/services.scm (xdg-configuration-files-directory): Add leading dot. * gnu/home/services.scm (xdg-configuration-files-service-type): Change name. * gnu/home/services/shells.scm (add-shell-profile-file, zsh-get-configuration-files, add-zsh-dot-configuration, add-zsh-xdg-configuration, add-bash-configuration): Add leading dots. * gnu/home/services/symlink-manager.scm (update-symlinks-script): Remove leading dot. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/home/services/xdg.scm')
-rw-r--r--gnu/home/services/xdg.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/home/services/xdg.scm b/gnu/home/services/xdg.scm
index 361a2a6148..3b504d7d09 100644
--- a/gnu/home/services/xdg.scm
+++ b/gnu/home/services/xdg.scm
@@ -421,7 +421,7 @@ that the application cannot open the specified MIME type.")
(define (add-xdg-desktop-entry-file entry)
(let ((file (first entry))
(config (second entry)))
- (list (format #f "local/share/applications/~a" file)
+ (list (format #f ".local/share/applications/~a" file)
(apply mixed-text-file
(format #f "xdg-desktop-~a-entry" file)
config))))