I have a GUI, that I need to run on Windows from a Linux machine. A top level window is created, and I would like to maximize this window, keeping the menu bar.
mytop = Toplevel()
mytop.wm_attributes("-zoomed", "1")
The above snippet works perfectly in Linux, but does not work when X-forwarding through Putty. I've found other commands, that are said to work for windows but they don't work either, and I suspect it has something to do with forwarding the GUI.
Thoughts are appreciated.