From 13a2d46d082ba09eb4934cec092f6085134e58e0 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 22 Jul 2025 19:12:28 +1000 Subject: shell: remove default log rules The spammy logs have been silenced --- src/caelestia/subcommands/shell.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/caelestia/subcommands') diff --git a/src/caelestia/subcommands/shell.py b/src/caelestia/subcommands/shell.py index effff3a..68a6821 100644 --- a/src/caelestia/subcommands/shell.py +++ b/src/caelestia/subcommands/shell.py @@ -22,7 +22,9 @@ class Command: self.message(*self.args.message) else: # Start the shell - args = ["qs", "-c", "caelestia", "-n", "--log-rules", self.args.log_rules] + args = ["qs", "-c", "caelestia", "-n"] + if self.args.log_rules: + args.append("--log-rules", self.args.log_rules) if self.args.daemon: args.append("-d") subprocess.run(args) -- cgit v1.2.3-freya