From owner-freebsd-questions@FreeBSD.ORG Mon Apr 23 02:44:11 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C91B91065673 for ; Mon, 23 Apr 2012 02:44:11 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 69ED98FC0C for ; Mon, 23 Apr 2012 02:44:11 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q3N2i6C2066008; Sun, 22 Apr 2012 20:44:06 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q3N2i65g066005; Sun, 22 Apr 2012 20:44:06 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 22 Apr 2012 20:44:06 -0600 (MDT) From: Warren Block To: Polytropon In-Reply-To: <20120423015307.91d26d6c.freebsd@edvax.de> Message-ID: References: <4F93EEE3.5040809@kleppnett.no> <20120423015307.91d26d6c.freebsd@edvax.de> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sun, 22 Apr 2012 20:44:06 -0600 (MDT) Cc: Kenneth Hatteland , freebsd-questions@freebsd.org Subject: Re: Dual monitors ok, but no mouse and keyboard action on the slave screen X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Apr 2012 02:44:11 -0000 On Mon, 23 Apr 2012, Polytropon wrote: > On Sun, 22 Apr 2012 13:43:31 +0200, Kenneth Hatteland wrote: >> I`ve gotten a 17 inch monitor in addition to my 22 inch working with 2 >> separate desktops. I plan to have stuff like wireshark etc on the >> smallest. But I have a problem, I can get no work done since I have no >> mouse or keyboard working on the 17"... >> >> Anyone have somewhere with a solution to point me towards ? > > There are basically two kind of two-monitor settings: One > is to have the WM manage them, the other one is to "concatenate" > them to one "logical screen". > > I've been using the "concatenated screen" with two 21" CRTs, > each running at 1400x1050, so the result was a 2800x1050 > ultra extended extraordinary super hyper big wide screen. :-) > > You can configure this in your /etc/X11/xorg.conf (which you > can have X auto-generate). > > For example, "ServerLayout" could contain > > Screen 0 "Screen0" 0 0 > Screen 1 "Screen1" LeftOf "Screen0" > Option "Xinerama" "on" The newer way to do this is with a Virtual entry in the Screen section: Section "Monitor" Identifier "Monitor0" VendorName "HWP" ModelName "2615" Option "PreferredMode" "1920x1200" Option "Position" "1280 0" EndSection Section "Monitor" Identifier "Monitor1" VendorName "SAM" ModelName "215" Option "PreferredMode" "1280x1024" Option "Position" "0 0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Virtual 3200 1200 EndSubSection EndSection