From 500a76d5f41b4174f559576f2761e19cf468892e Mon Sep 17 00:00:00 2001 From: hir_lol Date: Tue, 17 Mar 2026 23:54:55 +0300 Subject: [PATCH] icon in first window --- windows.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows.py b/windows.py index 60db8e3..8e8ed5d 100644 --- a/windows.py +++ b/windows.py @@ -504,6 +504,8 @@ def _show_first_run(): root.title("TG WS Proxy") root.resizable(False, False) root.attributes("-topmost", True) + icon_path = str(Path(__file__).parent / "icon.ico") + root.iconbitmap(icon_path) w, h = 520, 440 sw = root.winfo_screenwidth()