From 74cd6f364178a37b58c49c43bdec3cf5a9bf3352 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 8 Nov 2025 11:46:24 -0800 Subject: [PATCH] Change default width from 80 to 120. --- voussoirkit/progressbars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voussoirkit/progressbars.py b/voussoirkit/progressbars.py index 17d4b7f..0fc5de7 100644 --- a/voussoirkit/progressbars.py +++ b/voussoirkit/progressbars.py @@ -129,7 +129,7 @@ class Bar1(Progress): if width is WIDTH_AUTO: self.width = shutil.get_terminal_size().columns - 2 - self.width = min(80, self.width) + self.width = min(120, self.width) else: self.width = width