Skip to content

Commit 41f9795

Browse files
committed
Revert console width cap — let output fill the terminal naturally
1 parent d80dd61 commit 41f9795

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/firefetch/cli.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,9 +417,7 @@ def main(argv: list[str] | None = None) -> int:
417417
format="%(asctime)s %(name)s %(levelname)s %(message)s",
418418
)
419419
_http.configure(proxy=args.proxy, insecure=args.insecure)
420-
# Cap render width on wide terminals — wider than ~120 just creates
421-
# a desert of trailing whitespace.
422-
console = Console(width=min(Console().width, 120))
420+
console = Console()
423421

424422
if args.mode == "apk":
425423
apk_path = _resolve_apk_target(args.target, args, console)

0 commit comments

Comments
 (0)