From 7e3bd98ab9f5c57fa97c8deb66080d83e873874c Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Sun, 4 Feb 2024 20:48:48 +0100 Subject: [PATCH] change config location to .config insted of $home --- main.cpp | 2 +- source/sys.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 51fe764..e89075f 100644 --- a/main.cpp +++ b/main.cpp @@ -47,7 +47,7 @@ int main(int argc, char **argv) if (save_location.empty() && args != Arg::File) { - printf("No save location, try selecting folder (-f)\n"); + printf("No save location, try selecting save folder (-f)\n"); return 1; } diff --git a/source/sys.cpp b/source/sys.cpp index 1a2e17b..0bd31e3 100644 --- a/source/sys.cpp +++ b/source/sys.cpp @@ -195,7 +195,8 @@ std::optional get_save_path() } fs::path userDirectory(homeDir); - userDirectory /= ".password_manager"; + userDirectory /= ".config"; + userDirectory /= "password_manager"; if (!fs::exists(userDirectory)) {