From 06a710249011550b128b07d6245685659067512a Mon Sep 17 00:00:00 2001 From: Elio Torquet <92248577+elioTrqt@users.noreply.github.com> Date: Mon, 4 Aug 2025 01:14:10 -0400 Subject: theme: add template system (#36) * user template system * fix when templates dir doesnt exist Also color -> colour --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> --- src/caelestia/utils/paths.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/caelestia/utils/paths.py') diff --git a/src/caelestia/utils/paths.py b/src/caelestia/utils/paths.py index a4ef36f..923c99c 100644 --- a/src/caelestia/utils/paths.py +++ b/src/caelestia/utils/paths.py @@ -17,6 +17,8 @@ c_cache_dir = cache_dir / "caelestia" cli_data_dir = Path(__file__).parent.parent / "data" templates_dir = cli_data_dir / "templates" +user_templates_dir = c_config_dir / "templates" +theme_dir = c_state_dir / "theme" scheme_path = c_state_dir / "scheme.json" scheme_data_dir = cli_data_dir / "schemes" -- cgit v1.2.3-freya