X11: move an existing window via command line?

前端 未结 1 1164
不思量自难忘°
不思量自难忘° 2020-12-08 10:05

Given an X client window ID, is there a way to move that window or change its geometry from the command line?

$ xlsclients -a
Window 0x3000001:
  Machine:  o         


        
相关标签:
1条回答
  • 2020-12-08 10:46

    I think xdotool will do the job.

    xdotool lets you programatically (or manually) simulate keyboard input and mouse activity, move and resize windows, etc. It does this using X11's XTEST extension and other Xlib functions.

    E.g.

    $ xdotool windowfocus 0x1a00ad2
    

    will focus the window with id 0x1a00ad2. There's also a windowmove command which is probably the one you're looking for.

    wmctrl is slighty more advanced. It is compatible with EWMH/NetWM X window managers as you can read on their website. I don't think you'll need it to be compatible with those though.

    0 讨论(0)
提交回复
热议问题