Is it possible to move an X11 window outside of the desktop using xlib? For example I want to position a window at -300, -300 and do so using the XMoveWindow function.
XMoveWindow( dpy, win, -300, -300 );
So the desired result would be something like this:
+--------+
| win |
| +--|-------------+
| | | |
+--------+ |
| Desktop |
| |
| |
+----------------+
Except the window is moved to 0, 0 instead:
+--------+-------+
| | |
| win | |
| | |
+--------+ |
| Desktop |
+----------------+
I can manually drag the window out of the screen beyond 0, 0 which makes me think it should be possible to do this with Xlib?