This commit is contained in:
2026-03-09 00:27:43 -04:00
parent 5446a2407c
commit 80eaf740da
8 changed files with 131 additions and 98 deletions

View File

@@ -52,6 +52,9 @@ def load_config() -> dict[str, Any]:
def save_config(config: dict[str, Any]) -> None:
import tomli_w
import sys
sys.stderr.write(f"[DEBUG] Saving config. Theme: {config.get('theme')}\n")
sys.stderr.flush()
with open(CONFIG_PATH, "wb") as f:
tomli_w.dump(config, f)