I'm currently working with Tkinter and Python 2.7 on Linux and I was wondering if there was a way to remove the TK()
window border frame and title bar without using overrideredirect(1)
.
I have my own close button and overrideredirect(1)
presents me with a few issues that I can't accept:
- GUI always on top
- can't iconify then deiconify properly
- no keyboard input so can't type into fields (see python tkinter overrideredirect; cannot receive keystrokes (Linux))
I can't use attributes("-fullscreen", True)
as the titlebar and borders remain.