shell: remove qproc filter

unecessary, was removed in qs update
This commit is contained in:
Soramane
2025-07-16 18:31:18 +10:00
parent 33a10073ec
commit 6a1499f8f0
+1 -4
View File
@@ -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="")