How can I resize/move a window using python-xlib? I have the X window ID. What's the equivalent python-xlib snippet to wmctrl -i -r $id -e $gravity,$x,$y,$width,$height
?
How can I move/resize a window using python-xlib?
You need ConfigureWindow request to change x,y,width,height and ChangeWindowAttributes request to change gravity. You can use them directly or with resource/window wrapper
win = xobject.drawable.Window(display, id)
win.configure(x=123, y=345, width=678, height=910)
win.change_attributes(win_gravity=X.NorthWestGravity, bit_gravity=X.StaticGravity)
© 2022 - 2024 — McMap. All rights reserved.