diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-11 15:39:42 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-11 15:39:42 +1000 |
| commit | 7264b5b0f5f525b50785ee10df7b81f6bdf12694 (patch) | |
| tree | b347558eaed84e716f224dd3dbb3fafc529197e1 | |
| parent | Create LICENSE (diff) | |
| download | caelestia-cli-7264b5b0f5f525b50785ee10df7b81f6bdf12694.tar.gz caelestia-cli-7264b5b0f5f525b50785ee10df7b81f6bdf12694.tar.bz2 caelestia-cli-7264b5b0f5f525b50785ee10df7b81f6bdf12694.zip | |
shell: reorder qs args
So nix substituteInPlace works better
| -rw-r--r-- | src/caelestia/subcommands/shell.py | 2 |
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) |