7

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?

Daenyth
  • 35,856
  • 13
  • 85
  • 124

1 Answers1

4

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)
Andrey Sidorov
  • 24,905
  • 4
  • 62
  • 75