Daenyth
Daenyth

Reputation: 37441

How can I move/resize a window using python-xlib?

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?

Upvotes: 7

Views: 2887

Answers (1)

Andrey Sidorov
Andrey Sidorov

Reputation: 25456

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)

Upvotes: 4

Related Questions