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")