I have a python tkinter application which I want to run full screen. When I uncomment overrideredirect, the window manager (Gnome, Linux) will not be able to forward keystro
This works for the use case where you're using overrideredirect to get fullscreen, which is somewhat common:
#self.root.overrideredirect(1) self.root.attributes('-fullscreen', True)