summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-08-14 21:27:24 +0200
committerGravatar Tom Willemsen2012-08-14 21:27:24 +0200
commit252e766648150e17b7ea1198d6270603e0adfe6e (patch)
treee7979037ff1576db74264f5a4219ebe79cd22466
parent7376a87f72a17aaa2a07a6a211645b68b2b3a6ca (diff)
downloadundone-252e766648150e17b7ea1198d6270603e0adfe6e.tar.gz
undone-252e766648150e17b7ea1198d6270603e0adfe6e.zip
Oops, should have been more careful
-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)))