From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Alex Griffin" Subject: bug#33189: Touchpad tap Date: Mon, 13 May 2019 13:27:00 -0400 Message-ID: <5088a01a-97f5-4f48-b7ab-45fcf1750476@www.fastmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:44517) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQEk7-0001Uy-Qe for bug-guix@gnu.org; Mon, 13 May 2019 13:28:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQEk6-0001zZ-RU for bug-guix@gnu.org; Mon, 13 May 2019 13:28:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60742) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hQEk6-0001z8-AX for bug-guix@gnu.org; Mon, 13 May 2019 13:28:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hQEk6-0001nD-0w for bug-guix@gnu.org; Mon, 13 May 2019 13:28:02 -0400 In-Reply-To: Sender: "Debbugs-submit" Resent-Message-ID: List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 33189@debbugs.gnu.org If you want to force the libinput driver, it's way easier to just remove synaptics from the list of Xorg modules. (set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout) (modules (filter (lambda (mod) (not (eq? mod xf86-input-synaptics))) %default-xorg-modules)))) Or if you don't want to do that, you can use synclient to configure the synaptics driver after it has already loaded. No need to fiddle with X11 config files. It looks like this issue is probably the same as #35450, where Florian has identified the cause. -- Alex Griffin