summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2014-06-02 15:39:54 +0200
committerGerd Hoffmann <kraxel@redhat.com>2014-06-04 08:40:42 +0200
commit90525fe2796dd52f5a8ba21c9aab047810e0ba0e (patch)
tree908df4fe4cec835f2ddd0da9df8e12f1f1d4e927 /docs
parent3503206a904d5b3b52caa6fcd6bee5419f9d3d4c (diff)
downloadqemu-90525fe2796dd52f5a8ba21c9aab047810e0ba0e.tar.gz
docs/multiseat.txt: gtk joined the party
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/multiseat.txt16
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/multiseat.txt b/docs/multiseat.txt
index 126f39d9fa..dd3a831065 100644
--- a/docs/multiseat.txt
+++ b/docs/multiseat.txt
@@ -6,16 +6,20 @@ host side
---------
First you must compile qemu with a user interface supporting
-multihead/multiseat and input event routing. Right now this list is
-pretty short: sdl2.
+multihead/multiseat and input event routing. Right now this
+list includes sdl2 and gtk (both 2+3):
./configure --enable-sdl --with-sdlabi=2.0
+or
+
+ ./configure --enable-gtk
+
Next put together the qemu command line:
qemu -enable-kvm -usb $memory $disk $whatever \
- -display sdl \
+ -display [ sdl | gtk ] \
-vga std \
-device usb-tablet
@@ -37,6 +41,12 @@ The "display=video2" sets up the input routing. Any input coming from
the window which belongs to the video.2 display adapter will be routed
to these input devices.
+The sdl2 ui will start up with two windows, one for each display
+device. The gtk ui will start with a single window and each display
+in a separate tab. You can either simply switch tabs to switch heads,
+or use the "View / Detach tab" menu item to move one of the displays
+to its own window so you can see both display devices side-by-side.
+
guest side
----------