From 872075bace7a10dd0d3893f4c2a0f69552daf550 Mon Sep 17 00:00:00 2001 From: Volodymyr Patuta <90917-fiplox@users.noreply.framagit.org> Date: Sat, 12 Dec 2020 16:08:00 +0100 Subject: [PATCH] not hidden folder --- src/rnote/notes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rnote/notes.rs b/src/rnote/notes.rs index 8d9bafc..c12afa4 100644 --- a/src/rnote/notes.rs +++ b/src/rnote/notes.rs @@ -8,7 +8,7 @@ use walkdir::WalkDir; /// Get the path to the root directory of all notes. pub fn get_base_path() -> Result { let home = env::var("XDG_DATA_HOME")?; - Ok(format!("{}/.rnote/", home)) + Ok(format!("{}/rnote/", home)) } /// Get path to a category/date directory.