From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1P5o25-0000kX-IO for garchives@archives.gentoo.org; Tue, 12 Oct 2010 23:13:21 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2914E085C; Tue, 12 Oct 2010 23:13:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B51F5E08C5 for ; Tue, 12 Oct 2010 23:13:20 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA3B91B41AA for ; Tue, 12 Oct 2010 23:13:19 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2104) id 9D5342003C; Tue, 12 Oct 2010 23:13:18 +0000 (UTC) From: "Joshua Saddler (nightmorph)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, nightmorph@gentoo.org Subject: [gentoo-commits] gentoo commit in xml/htdocs/doc/en: xorg-config.xml X-VCS-Repository: gentoo X-VCS-Files: xorg-config.xml X-VCS-Directories: xml/htdocs/doc/en X-VCS-Committer: nightmorph X-VCS-Committer-Name: Joshua Saddler Content-Type: text/plain; charset=utf8 Message-Id: <20101012231318.9D5342003C@flycatcher.gentoo.org> Date: Tue, 12 Oct 2010 23:13:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: ec9d45ad-1392-4b8c-a452-2dd12b7233f8 X-Archives-Hash: 6b895f74421b8c8b803c9dbcf4431007 nightmorph 10/10/12 23:13:18 Modified: xorg-config.xml Log: Add multiple monitor info, bug 328001 Revision Changes Path 1.41 xml/htdocs/doc/en/xorg-config.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/xorg= -config.xml?rev=3D1.41&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/xorg= -config.xml?rev=3D1.41&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/xorg= -config.xml?r1=3D1.40&r2=3D1.41 Index: xorg-config.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/xorg-config.xml,v retrieving revision 1.40 retrieving revision 1.41 diff -u -r1.40 -r1.41 --- xorg-config.xml 29 Aug 2010 03:39:55 -0000 1.40 +++ xorg-config.xml 12 Oct 2010 23:13:18 -0000 1.41 @@ -1,6 +1,6 @@ - + =20 The X Server Configuration HOWTO @@ -22,8 +22,8 @@ =20 -2 -2010-08-28 +3 +2010-10-12 =20 What is the X Window Server? @@ -664,6 +664,37 @@
+Multiple monitors + + +

+You can configure more than one monitor in /etc/X11/xorg.conf. All +you have to do is give each monitor an identifer, then list its physical +position, such as "RightOf" or "Above" another monitor. The following ex= ample +shows how to configure a DVI and a VGA monitor, with the VGA monitor as = the +right-hand screen: +

+ +
+Section "Device"
+  Identifier "RadeonHD 4550"
+  Option     "Monitor-DVI-0" "DVI screen"
+  Option     "Monitor-VGA-0" "VGA screen"
+EndSection
+
+Section "Monitor"
+  Identifier "DVI screen"
+EndSection
+
+Section "Monitor"
+  Identifier "VGA screen"
+  Option     "RightOf" "DVI screen"
+EndSection
+
+ + +
+
Configuring your keyboard =20