diff --git a/boiiiwd_package/src/settings_tab.py b/boiiiwd_package/src/settings_tab.py index 5ab5ed7..bc69743 100644 --- a/boiiiwd_package/src/settings_tab.py +++ b/boiiiwd_package/src/settings_tab.py @@ -362,9 +362,13 @@ class SettingsTab(ctk.CTkFrame): if setting == "theme": theme_config = check_config("theme", "boiiiwd_theme.json") + if os.path.exists(os.path.join(application_path, theme_config)): return "Custom" + if theme_config == "boiiiwd_theme.json": + return "Default" + match = re.match(r'boiiiwd_(\w+)\.json', theme_config) if match: theme_name = match.group(1).capitalize()