summaryrefslogtreecommitdiffstats
path: root/undone/main.scm
diff options
context:
space:
mode:
Diffstat (limited to 'undone/main.scm')
-rw-r--r--undone/main.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/undone/main.scm b/undone/main.scm
index 5bc0fb6..b1f1845 100644
--- a/undone/main.scm
+++ b/undone/main.scm
@@ -24,8 +24,8 @@
(let* ((xdg (getenv "XDG_CONFIG_HOME"))
(home (getenv "HOME"))
(rc-file-name "undonerc.scm")
- (xdg-rc-file (string-append xdg "/" rc-file-name))
- (home-rc-file (string-append home "/" rc-file-name)))
+ (xdg-rc-file (string-append xdg "/undone/" rc-file-name))
+ (home-rc-file (string-append home "/.undone/" rc-file-name)))
(if (and xdg (file-exists? xdg-rc-file))
xdg-rc-file
home-rc-file)))