I have a GTK app that does not accept the
parameter that I need to move and resize once the app is running (or a way of doing one off runs with specific settings).
I am pretty sure
will do what I want as it lists
Code:
WM_NORMAL_HINTS(WM_SIZE_HINTS):
program specified size: 164 by 164
window gravity: NorthWest
when pointed at the app.
I can do
Code:
xprop -set WM_NAME "somenewname"
but I can not see what values are need to set the size and window location.
Code:
xprop -set WM_SIZE_HINTS.Geometry 640x480+10+10
would seem to be along the right lines but it does not work.
(error is the same as when I pass nonsense as a parameter)
any ideas ?