From owner-freebsd-questions@freebsd.org Fri Sep 23 07:18:22 2016 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2997BE6304 for ; Fri, 23 Sep 2016 07:18:22 +0000 (UTC) (envelope-from afiskon@devzen.ru) Received: from relay11.nicmail.ru (relay11.nicmail.ru [195.208.3.7]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69189957 for ; Fri, 23 Sep 2016 07:18:21 +0000 (UTC) (envelope-from afiskon@devzen.ru) Received: from [109.70.25.186] (port=45415 helo=localhost) by f06.mail.nic.ru with esmtp (Exim 5.55) (envelope-from ) id 1bnKZ4-000F0v-0I; Fri, 23 Sep 2016 10:06:30 +0300 Received: from [188.123.231.37] (account afiskon@devzen.ru HELO localhost) by proxy07.mail.nic.ru (Exim 5.55) with id 1bnKYw-0006hA-Jb; Fri, 23 Sep 2016 10:06:22 +0300 Date: Fri, 23 Sep 2016 10:04:46 +0300 From: Aleksander Alekseev To: doug@safeport.com Cc: freebsd-questions@FreeBSD.org Subject: Re: turning off the touchpad [solved] Message-ID: <20160923070444.GA2611@e733> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Sep 2016 07:18:22 -0000 > This turns out to be easy. I got pointed to the answer from the freebsd-x11 > list. Use 'xinput list' to get the id of the psm device and then > > xinput set-prop 8 "Device Enabled" 0 > > will disable it. I suppose that means adding an InputDevice section to > /usr/local/etc/X11/xorg.conf.d/ should also work. I could not figure out the > options from the man page however. Note that this can turn off not only touchpad but all mouse devices in your system. I personally turn off touchpad this way: ``` sysctl hw.psm.synaptics.touchpad_off=1 ``` This will not work unless you have: ``` hw.psm.synaptics_support="1" ``` ... in your /boot/loader.conf -- Best regards, Aleksander Alekseev