From 7264b5b0f5f525b50785ee10df7b81f6bdf12694 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 11 Jul 2025 15:39:42 +1000 Subject: shell: reorder qs args So nix substituteInPlace works better --- src/caelestia/subcommands/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3-freya