summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/caelestia/subcommands/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caelestia/subcommands/shell.py b/src/caelestia/subcommands/shell.py
index fc3321b..f44d304 100644
--- a/src/caelestia/subcommands/shell.py
+++ b/src/caelestia/subcommands/shell.py
@@ -22,7 +22,7 @@ class Command:
self.message(*self.args.message)
else:
# Start the shell
- args = ["qs", "-n", "-c", "caelestia", "--log-rules", self.args.log_rules]
+ args = ["qs", "-c", "caelestia", "-n", "--log-rules", self.args.log_rules]
if self.args.daemon:
args.append("-d")
subprocess.run(args)