diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-04 15:40:17 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-04 15:40:17 +1000 |
| commit | d8037819f01ef2eb920516ce50237a922019684b (patch) | |
| tree | 2353531ebe95a7ae69aaa5c77b767a3db7f737d9 /src/caelestia/parser.py | |
| parent | theme: add template system (#36) (diff) | |
| download | caelestia-cli-d8037819f01ef2eb920516ce50237a922019684b.tar.gz caelestia-cli-d8037819f01ef2eb920516ce50237a922019684b.tar.bz2 caelestia-cli-d8037819f01ef2eb920516ce50237a922019684b.zip | |
ci: add flake update workflow
Also add contributing, funding and issue templates
parser: add kill option to shell
version: fix errors when not on arch
Diffstat (limited to 'src/caelestia/parser.py')
| -rw-r--r-- | src/caelestia/parser.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/caelestia/parser.py b/src/caelestia/parser.py index 550842d..35266b2 100644 --- a/src/caelestia/parser.py +++ b/src/caelestia/parser.py @@ -22,6 +22,7 @@ def parse_args() -> (argparse.ArgumentParser, argparse.Namespace): shell_parser.add_argument("-d", "--daemon", action="store_true", help="start the shell detached") shell_parser.add_argument("-s", "--show", action="store_true", help="print all shell IPC commands") shell_parser.add_argument("-l", "--log", action="store_true", help="print the shell log") + shell_parser.add_argument("-k", "--kill", action="store_true", help="kill the shell") shell_parser.add_argument("--log-rules", metavar="RULES", help="log rules to apply") # Create parser for toggle opts |