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/subcommands/shell.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/subcommands/shell.py')
| -rw-r--r-- | src/caelestia/subcommands/shell.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/caelestia/subcommands/shell.py b/src/caelestia/subcommands/shell.py index 06f3b45..4cdd128 100644 --- a/src/caelestia/subcommands/shell.py +++ b/src/caelestia/subcommands/shell.py @@ -17,6 +17,9 @@ class Command: elif self.args.log: # Print the log self.print_log() + elif self.args.kill: + # Kill the shell + self.shell("kill") elif self.args.message: # Send a message self.message(*self.args.message) |