Skip to content

Commit 34693d9

Browse files
authored
Merge pull request #9 from jn-s3s/develop
fix: removed taskbar icon, shown only on tray
2 parents 4c74dc7 + d5ec8d8 commit 34693d9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

app.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ def __init__(self, root: tk.Tk) -> None:
5353
- the hover guard that hides/restores the window.
5454
"""
5555
self.root = root
56+
self.root.withdraw()
57+
self.root.overrideredirect(True)
58+
self.root.attributes("-toolwindow", True)
59+
self.root.deiconify()
60+
5661
self.root.title(APP_NAME)
5762
self.root.configure(bg="black")
5863
self.root.overrideredirect(True) # borderless

0 commit comments

Comments
 (0)