summaryrefslogtreecommitdiff
path: root/src/caelestia/parser.py
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-11 18:07:34 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-11 18:07:34 +1000
commitf43987ef2f55ede746c5cc37567f5e74ba515fb3 (patch)
tree7c12e3a4a27c0e1808e6827ef343d4a2e457e36a /src/caelestia/parser.py
parentinternal: refactor scheme (diff)
downloadcaelestia-cli-f43987ef2f55ede746c5cc37567f5e74ba515fb3.tar.gz
caelestia-cli-f43987ef2f55ede746c5cc37567f5e74ba515fb3.tar.bz2
caelestia-cli-f43987ef2f55ede746c5cc37567f5e74ba515fb3.zip
feat: impl scheme command (partial)
Diffstat (limited to 'src/caelestia/parser.py')
-rw-r--r--src/caelestia/parser.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/caelestia/parser.py b/src/caelestia/parser.py
index eb8734e..9718938 100644
--- a/src/caelestia/parser.py
+++ b/src/caelestia/parser.py
@@ -61,7 +61,6 @@ def parse_args() -> (argparse.ArgumentParser, argparse.Namespace):
# Create parser for scheme opts
scheme_parser = command_parser.add_parser("scheme", help="manage the colour scheme")
scheme_parser.set_defaults(cls=scheme.Command)
- scheme_parser.add_argument("-g", "--get", action="store_true", help="print the current scheme")
scheme_parser.add_argument("-r", "--random", action="store_true", help="switch to a random scheme")
scheme_parser.add_argument("-n", "--name", choices=get_scheme_names(), help="the name of the scheme to switch to")
scheme_parser.add_argument("-f", "--flavour", help="the flavour to switch to")