summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands/shell.py
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-04 15:40:17 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-04 15:40:17 +1000
commitd8037819f01ef2eb920516ce50237a922019684b (patch)
tree2353531ebe95a7ae69aaa5c77b767a3db7f737d9 /src/caelestia/subcommands/shell.py
parenttheme: add template system (#36) (diff)
downloadcaelestia-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.py3
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)