From a458afd2f04628752d4187b3d650fa60ecb41132 Mon Sep 17 00:00:00 2001 From: Seth Date: Thu, 12 Mar 2026 04:15:23 +0000 Subject: [PATCH] Ultra-compact header for small terminal widths - Simplified header to single line: '>> PINAIL STATUS <<' - Fixed wrapping issues on narrow/small screens - Much more compatible with various display sizes - Deployed and verified --- piNail2/tty_status_display.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/piNail2/tty_status_display.py b/piNail2/tty_status_display.py index b472954..20b6527 100644 --- a/piNail2/tty_status_display.py +++ b/piNail2/tty_status_display.py @@ -228,20 +228,10 @@ class StatusDisplay: """Draw the complete status display frame.""" lines = [] - # ASCII Art Title (compact) + # ASCII Art Title (ultra-compact) lines.append("") lines.append("{}{}{}".format(Colors.BRIGHT_CYAN + Colors.BOLD, - "╔═══════════════════════════════════════╗", Colors.RESET)) - lines.append("{}{}{}".format(Colors.BRIGHT_CYAN + Colors.BOLD, - "║ ║", Colors.RESET)) - lines.append("{}{}{}".format(Colors.BRIGHT_CYAN + Colors.BOLD, - "║ >> PINAIL << ║", Colors.RESET)) - lines.append("{}{}{}".format(Colors.BRIGHT_CYAN + Colors.BOLD, - "║ E-Nail Control System v2 ║", Colors.RESET)) - lines.append("{}{}{}".format(Colors.BRIGHT_CYAN + Colors.BOLD, - "║ ║", Colors.RESET)) - lines.append("{}{}{}".format(Colors.BRIGHT_CYAN + Colors.BOLD, - "╚═══════════════════════════════════════╝", Colors.RESET)) + ">> PINAIL STATUS <<", Colors.RESET)) # Timestamp timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")