From owner-freebsd-questions@FreeBSD.ORG Tue Apr 17 05:15:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FB1816A403 for ; Tue, 17 Apr 2007 05:15:52 +0000 (UTC) (envelope-from sanya-spb@list.ru) Received: from mx4.mail.ru (fallback.mail.ru [194.67.57.14]) by mx1.freebsd.org (Postfix) with ESMTP id 0D4E813C483 for ; Tue, 17 Apr 2007 05:15:51 +0000 (UTC) (envelope-from sanya-spb@list.ru) Received: from mx27.mail.ru (mx27.mail.ru [194.67.23.64]) by mx4.mail.ru (mPOP.Fallback_MX) with ESMTP id 8D2083563AA; Tue, 17 Apr 2007 08:31:09 +0400 (MSD) Received: from [91.122.53.160] (port=46892 helo=[192.168.77.170]) by mx27.mail.ru with asmtp id 1HdfLQ-0004Ny-00; Tue, 17 Apr 2007 08:31:08 +0400 From: sanya-spb@list.ru Organization: ARIS (Saint-Petersburg) To: freebsd-questions@freebsd.org Date: Tue, 17 Apr 2007 08:30:57 +0400 User-Agent: KMail/1.9.6 References: <20070416230250.ixwirhd8vu8sgk0w@imp.enib.fr> In-Reply-To: <20070416230250.ixwirhd8vu8sgk0w@imp.enib.fr> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200704170830.58284.sanya-spb@list.ru> Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Cc: Firas Kraiem Subject: Re: Synaptics touchpad and FBSD 6.2-R 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: Tue, 17 Apr 2007 05:15:52 -0000 =F7 =D3=CF=CF=C2=DD=C5=CE=C9=C9 =CF=D4 Tuesday 17 April 2007 01:02:50 Firas= Kraiem =CE=C1=D0=C9=D3=C1=CC(=C1): > Greetings > > I have an Asus A6JM laptop with FBSD 6.2-RELEASE installed on it. The > touchpad is recognized very well (tapping and scrolling work > perfectly) but I'd like to be able to toggle in on/off with just a > keystroke. In Linux, I add an InputDevice section about it in my > xorg.conf and I use ksynaptics to manage the touchpad. In FBSD, I have > installed ksynaptics but I have no idea what I should do with my > xorg.conf and Google didn't help much. > > Any help, or even pointing to the right direction would be much > appreciated. > > Firas hi You need to install "ports/x11-servers/synaptics/" and add some strings in your xorg.conf #=3D=3D=3D=3Dxorg.conf=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Section "Module" =2E.. Load "synaptics" EndSection Section "InputDevice" Driver "synaptics" Identifier "TouchPad" Option "Device" "/dev/psm0" # Option "Device" "/dev/sysmouse" Option "Protocol" "psm" Option "LeftEdge" "1700" Option "RightEdge" "5300" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" Option "MinSpeed" "0.09" Option "MaxSpeed" "0.18" Option "AccelFactor" "0.0015" Option "ShmConfig" "true" EndSection Section "ServerLayout" =2E.. InputDevice "TouchPad" "CorePointer" EndSection #=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 this is my fujitsu life book config, but also I turn off moused from console #=3D=3D=3D=3D=3Drc.conf=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =2E.. moused_enable=3D"NO" #=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