I have a tkinter app that I want to be frameless. This is quite easily done by adding
app.overridedirect(True)
during the setup process. Once I do that, though, the app stops showing app in the task switcher. So, when pressing alt + tab I cannot see the app or switch to it. All the other apps show up fine and when I set overridedirect to False the tkinter app shows up again. Is there a way to fix that behaviour so I can see the app in the task switcher even without a frame?