shell: fix log rules arg (#67)

This commit is contained in:
Evence Wang
2025-11-04 07:13:00 -05:00
committed by GitHub
parent 0ae99bbe39
commit 57dfea955e
+1 -1
View File
@@ -27,7 +27,7 @@ class Command:
# Start the shell
args = ["qs", "-c", "caelestia", "-n"]
if self.args.log_rules:
args.append("--log-rules", self.args.log_rules)
args.extend(["--log-rules", self.args.log_rules])
if self.args.daemon:
args.append("-d")
subprocess.run(args)