I am using tk in python (3), though I\'d assume that this applies to any language. I am looking to get the current x, y coordinates of a tk window outside of the title bar:<
In Tkinter, most configuration functions when used without new value arguments returns the current value(s). Thus root.geometry() (plus a few string parsing) can serve your goal.