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)) {