From 9b19316a02ba7bfd2196baced7eaeb28ba339535 Mon Sep 17 00:00:00 2001 From: suchmememanyskill <38142618+suchmememanyskill@users.noreply.github.com> Date: Sat, 12 Aug 2023 21:20:26 +0200 Subject: [PATCH] Fix #95 --- css_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css_utils.py b/css_utils.py index 35bafc8..072f5a2 100644 --- a/css_utils.py +++ b/css_utils.py @@ -94,7 +94,7 @@ def get_steam_path() -> str: except Exception as e: return "C:\\Program Files (x86)\\Steam" # Taking a guess here else: - return f"{get_user_home()}/.local/share/Steam" + return f"{get_user_home()}/.steam/steam" def create_steam_symlink() -> Result: return create_symlink(get_theme_path(), os.path.join(get_steam_path(), "steamui", "themes_custom"))