From 562f6453dc7b1432bcee67d5d402cc84167422ae Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 8 Aug 2025 17:46:58 +0900 Subject: [PATCH] fix: use correct path --- helpers/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers/ui.py b/helpers/ui.py index 4c441e0..985bc1d 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -63,8 +63,8 @@ funcs = f"{helpers_path}/funcs" mods_temp_file = f"{cache_path}/{app_name_abbr}.mods_temp" stale_mods_temp_file = f"{cache_path}/{app_name_abbr}.stale_mods_temp" servers_path = f"{cache_path}/{app_name_abbr}.servers" -config_path = f"{user_path}/.config" -config_file = f"{user_path}/.config/dztuirc" +config_path = f"{user_path}/.config/dztui" +config_file = f"{config_path}/dztuirc" history_file = f"{state_path}/{app_name_abbr}.history" logger = logging.getLogger(__name__)