From 874686a95c785bf8bf09f03d276c3fc75145abf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Th=E1=BA=BF=20H=C6=B0ng?= Date: Sun, 2 Mar 2025 03:04:02 +0700 Subject: [PATCH] chore: change default path to user So we can use it on Linux --- vollerei/paths.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vollerei/paths.py b/vollerei/paths.py index 2e7afd2..d3b93eb 100644 --- a/vollerei/paths.py +++ b/vollerei/paths.py @@ -9,8 +9,8 @@ class Paths: """ base_paths = PlatformDirs("vollerei", "tretrauit", roaming=True) - cache_path = base_paths.site_cache_path - data_path = base_paths.site_data_path + cache_path = base_paths.user_cache_path + data_path = base_paths.user_data_path tools_data_path = data_path.joinpath("tools") tools_cache_path = cache_path.joinpath("tools") launcher_cache_path = cache_path.joinpath("launcher")