diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 18:31:18 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 18:31:18 +1000 |
| commit | 6a1499f8f0dbae41c6899473f51f3b4d43b8fd18 (patch) | |
| tree | e70beb2a289e6064671d935fd18646534b92607e /src/caelestia/subcommands | |
| parent | nix: fix platforms meta (diff) | |
| download | caelestia-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.py | 5 |
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="") |