From b69515238cb18cfa23744dd86c1c1a721dd23ddc Mon Sep 17 00:00:00 2001 From: Gene Johnson Date: Sat, 14 Mar 2026 16:40:48 -0700 Subject: [PATCH] Increase firehose zone height and adjust scroll duration multiplier for firehose mode. --- mainline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainline.py b/mainline.py index 0ff787a..725bad8 100755 --- a/mainline.py +++ b/mainline.py @@ -462,7 +462,7 @@ def fetch_poetry(): # ─── STREAM ─────────────────────────────────────────────── _SCROLL_DUR = 3.75 # seconds per headline -FIREHOSE_H = 6 # firehose zone height (terminal rows) +FIREHOSE_H = 12 # firehose zone height (terminal rows) _mic_db = -99.0 # current mic level, written by background thread _mic_stream = None @@ -737,7 +737,7 @@ def stream(items): fh = FIREHOSE_H if FIREHOSE else 0 sh = h - fh # scroll zone height GAP = 3 # blank rows between headlines - dt = _SCROLL_DUR / (sh + 15) * 2 + dt = _SCROLL_DUR / (sh + 15) * (4 if FIREHOSE else 2) # active blocks: (content_rows, color, canvas_y, meta_idx) active = []