Skip to content

Commit 8e9d529

Browse files
committed
feat: limit journalctl output in preview window
Limit `journalctl` output _by default_ in preview window to `1_000` lines.
1 parent 9b14fb5 commit 8e9d529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/isd_tui/isd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ class Settings(BaseSettings):
787787
)
788788

789789
journalctl_args: list[str] = Field(
790-
default=["--catalog"],
790+
default=["--catalog", "--lines=1000"],
791791
description=dedent("""\
792792
Default arguments for `journalctl` to generate the
793793
output of the `Journal` preview window."""),

0 commit comments

Comments
 (0)