summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands
diff options
context:
space:
mode:
authorSoramane <61896496+soramanew@users.noreply.github.com>2025-07-16 18:31:18 +1000
committerSoramane <61896496+soramanew@users.noreply.github.com>2025-07-16 18:31:18 +1000
commit6a1499f8f0dbae41c6899473f51f3b4d43b8fd18 (patch)
treee70beb2a289e6064671d935fd18646534b92607e /src/caelestia/subcommands
parentnix: fix platforms meta (diff)
downloadcaelestia-cli-6a1499f8f0dbae41c6899473f51f3b4d43b8fd18.tar.gz
caelestia-cli-6a1499f8f0dbae41c6899473f51f3b4d43b8fd18.tar.bz2
caelestia-cli-6a1499f8f0dbae41c6899473f51f3b4d43b8fd18.zip
shell: remove qproc filter
unecessary, was removed in qs update
Diffstat (limited to 'src/caelestia/subcommands')
-rw-r--r--src/caelestia/subcommands/shell.py5
1 files changed, 1 insertions, 4 deletions
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="")