summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-11 15:39:42 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-11 15:39:42 +1000
commit7264b5b0f5f525b50785ee10df7b81f6bdf12694 (patch)
treeb347558eaed84e716f224dd3dbb3fafc529197e1 /src/caelestia/subcommands
parentCreate LICENSE (diff)
downloadcaelestia-cli-7264b5b0f5f525b50785ee10df7b81f6bdf12694.tar.gz
caelestia-cli-7264b5b0f5f525b50785ee10df7b81f6bdf12694.tar.bz2
caelestia-cli-7264b5b0f5f525b50785ee10df7b81f6bdf12694.zip
shell: reorder qs args
So nix substituteInPlace works better
Diffstat (limited to 'src/caelestia/subcommands')
-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)