I'm trying to start an application within Ubuntu (xfce or gnome) and via the command line and was wondering if there's a generic way to set the dimensions of a given window of a given app that is currently running?
|
This is easier to do if you install something like
replace "window name" with a name or reg ex appearing in the window title (you can also search by window class and a variety of other things), and the two numbers appearing after windowsize are the width and height, respectively. (You can also use percents, etc.) See If you're on Lucid or earlier, I recommend going to the xdotool website to get a newer version, however. |
|||
|
|
|
If the window manager supports Xlib there is. This uses Python to set the window's size to 500x300:
The hard part is getting the window ID; in the above code it got the ID of the active window. If you want another ID, you can use something like this to get the title and controlling PID of each window, and choose the right ID based on those:
|
|||
|
|
|
||||
|
|
|
Specific to XFCE there is pyxfce which will allow you to do that using python language. Pyxfce is an API that, among other things, lets you communicate with the window manager. To use this from the command line would require you to prepare a script first. Depending on your use, the importance of using a X-based API using X window IDs (such as python-xlib or xdotools mentioned in another answer) versus others that use strings matching window titles (like wmctrl), is that there can be no confusion between windows, which may have the same keywords in their respective title. |
||||
|
|
