From 6a1499f8f0dbae41c6899473f51f3b4d43b8fd18 Mon Sep 17 00:00:00 2001 From: Soramane <61896496+soramanew@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:31:18 +1000 Subject: shell: remove qproc filter unecessary, was removed in qs update --- src/caelestia/subcommands/shell.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/caelestia/subcommands/shell.py') diff --git a/src/caelestia/subcommands/shell.py b/src/caelestia/subcommands/shell.py index f44d304..effff3a 100644 --- a/src/caelestia/subcommands/shell.py +++ b/src/caelestia/subcommands/shell.py @@ -36,10 +36,7 @@ class Command: return subprocess.check_output(["qs", "-c", "caelestia", *args], text=True) def filter_log(self, line: str) -> bool: - return ( - "QProcess: Destroyed while process" not in line - and f"Cannot open: file://{c_cache_dir}/imagecache/" not in line - ) + return f"Cannot open: file://{c_cache_dir}/imagecache/" not in line def print_ipc(self) -> None: print(self.shell("ipc", "show"), end="") -- cgit v1.2.3-freya