summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 0223fc2..d809b58 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -54,7 +54,7 @@ lazy_static! {
if let Ok(p) = std::env::var("HOME") {
let mut p = PathBuf::from(p);
- p.push(".config/joshuto");
+ p.push(format!(".config/{}", PROGRAM_NAME));
if p.is_dir() {
config_dirs.push(p);
}