X11R6 Info -- Sample Commands
|
|
| Simple Command Examples |
- Assuming we have three 1024x768 monitors
- without xinerama, xterms are usable only in that one monitor and doesnt move across to the other monitors
- Start up with the default: startx
|
export DISPLAY=:0.0 xterm
|
|
displays xterm on the 1st monitor ( default )
|
|
export DISPLAY=:0.1 xterm
|
|
displays xterm on the 2nd monitor
|
|
export DISPLAY=:0.2 xterm
|
|
displays xterm on the 3rd monitor
|
|
export DISPLAY=:0.3 xterm
|
|
displays xterm on the 4th monitor
|
|
|
- Start up with xinerama : startx -- +xinerama
|
|
|
displays default xterm on the 1st monitor and can be dragged around to any monitor
|
|
|
|
displays 120x40 xterm on the 2nd monitor and can be dragged around to any monitor
|
|
|
|
displays 120x40 xterm on the 3rd monitor and can be dragged around to any monitor
|
|
|
|
displays 120x40 xterm on the 4th monitor and can be dragged around to any monitor
|
|
|
|