From owner-freebsd-questions@FreeBSD.ORG Sat Dec 13 13:17:53 2008 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 A2A5C1065670 for ; Sat, 13 Dec 2008 13:17:53 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from smtp.lamaiziere.net (net.lamaiziere.net [91.121.44.19]) by mx1.freebsd.org (Postfix) with ESMTP id 678D98FC12 for ; Sat, 13 Dec 2008 13:17:53 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from baby-jane.lamaiziere.net (246.10.87-79.rev.gaoland.net [79.87.10.246]) by smtp.lamaiziere.net (Postfix) with ESMTPA id 65D2D63366E; Sat, 13 Dec 2008 14:17:52 +0100 (CET) Received: from baby-jane (localhost [127.0.0.1]) by baby-jane.lamaiziere.net (Postfix) with ESMTP id 7854A679CA4; Sat, 13 Dec 2008 14:17:51 +0100 (CET) Date: Sat, 13 Dec 2008 14:17:50 +0100 From: Patrick =?ISO-8859-15?Q?Lamaizi=E8re?= To: Marco Message-ID: <20081213141750.18c2f44e@baby-jane> In-Reply-To: <4943B02E.1000408@web.de> References: <4943B02E.1000408@web.de> Organization: /dave/nulle X-Mailer: Claws Mail 3.3.1 (GTK+ 2.12.9; i386-apple-darwin9.3.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: use different mouse/input devices in X.org 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: Sat, 13 Dec 2008 13:17:53 -0000 Le Sat, 13 Dec 2008 13:53:02 +0100, Marco a écrit : > Hi List, Hello, > i've using a Notebook with touchpad which works perfeclty fine. > However, i'd like also to use in paralell an external via usb connect > mouse. If i configure this hard into X.org config > it will work but i stumble here on problems. First of all, i have to > shutdown the X.org Server to do so, and restart it. Secondly i was not > able to tell X.org to use both device, which > would be the touchpad and the external mouse. > Possibly there is a daemon i can run in backround which maybe handles > that? Anyone has a solution for that kind of problem or something to > hit me in the right direction? moused(8) is able to mix several mice. You can use devd to call moused when an usb mouse is inserted, with a rule in /etc/devd.conf like : attach 200 { device-name "ums0"; action "/usr/sbin/moused -a 5 -p /dev/ums0 -I /var/run/moused.ums0.pid ; /usr/sbin/vidcontrol -m on"; }; In Xorg.conf, use /dev/sysmouse for the mouse device. That's all. Regards.