From 7f3f65f0bf967b2f82cbfde5d93103912d3b3b48 Mon Sep 17 00:00:00 2001 From: ramforth Date: Thu, 30 Oct 2025 22:01:05 +0100 Subject: [PATCH] Working state: Reinstated terminal title fix --- pytchat_listener.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pytchat_listener.py b/pytchat_listener.py index 1e2bd10..be79732 100644 --- a/pytchat_listener.py +++ b/pytchat_listener.py @@ -76,6 +76,10 @@ def get_user_color(author_id): # --- Main Script Logic --- def main(): + # Set terminal title + sys.stdout.write("\033]0;YouTube Live Chat\007") + sys.stdout.flush() + # Clear the terminal screen os.system('clear')