You have two separate X servers not presenting a single virtual desktop. If it were a single virtual desktop you'd expect geometries like:
Num of screens: 2
Geometry
: QRect(0,
0 1024x768
)Geometry
: QRect(1024,
0 1024x768
)
Num of screens: 2
Geometry: QRect(0,0 1024x768)
Geometry: QRect(1024,0 1024x768)
To copy to clipboard, switch view to plain text mode
Where the second screen's left edge is displaced to the right of the first. The window would then be movable into the space occupied by the second monitor.
To start an app on the second screen you can do:
./app -display :1
OR
DISPLAY=:1 ./app
./app -display :1
OR
DISPLAY=:1 ./app
To copy to clipboard, switch view to plain text mode
Edit: This is generic Linux advice. I don't have a dual head embedded system to play with. I also have not seen the "multi" syntax, so I am guessing that you get two displays.
Bookmarks