summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-11 20:37:37 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-11 20:37:37 +1000
commitd44bde166782928db85242e86df6190e9bcfa92a (patch)
treefaa098a83f45685012ab728f44ac030cff76470d /src/caelestia/subcommands
parentfeat: impl scheme command (partial) (diff)
downloadcaelestia-cli-d44bde166782928db85242e86df6190e9bcfa92a.tar.gz
caelestia-cli-d44bde166782928db85242e86df6190e9bcfa92a.tar.bz2
caelestia-cli-d44bde166782928db85242e86df6190e9bcfa92a.zip
feat: theme hypr and terminals
Diffstat (limited to 'src/caelestia/subcommands')
-rw-r--r--src/caelestia/subcommands/scheme.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/caelestia/subcommands/scheme.py b/src/caelestia/subcommands/scheme.py
index 19e62db..fa1f49a 100644
--- a/src/caelestia/subcommands/scheme.py
+++ b/src/caelestia/subcommands/scheme.py
@@ -1,6 +1,7 @@
from argparse import Namespace
from caelestia.utils.scheme import get_scheme
+from caelestia.utils.theme import apply_colours
class Command:
@@ -21,5 +22,6 @@ class Command:
scheme.flavour = self.args.flavour
if self.args.mode:
scheme.mode = self.args.mode
+ apply_colours(scheme.colours)
else:
print(scheme)