I have a simple tkinter app and I want to hide the titlebar. I am doing that via:
root.overrideredirect(True)
and that works fine. However, the resulting window has no icon in the taskbar and when switching the windows using Alt + Tab the window does not appear. I created an exe file using Pyinstaller and was hoping that would solve the issue but it doesn't. Is there a way to to fix this?