From mboxrd@z Thu Jan 1 00:00:00 1970 From: Subject: Touchpad tap Date: Sun, 28 Oct 2018 19:40:40 +0100 (CET) Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_56124_1000770418.1540752040646" Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Help Guix , Bug Guix List-Id: bug-guix.gnu.org ------=_Part_56124_1000770418.1540752040646 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hello, Guix Help! I am not able to use tap on my touchpad. Scroll is working, mouse motion is working, left and right buttons are working, but tap and double click are not working on my touchpad. As described in the Internet need to use /etc/X11/xorg.conf.d/90-synaptics.conf. But GuixSD has own filesystem structure, so there is no /etc/X11. Here it is configuration file xorg.scm: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/xorg.scm?id=v0.15.0-2564-g38a2f5eaf#n2564 I assume xorg configurations ought to be done. Please, how to write my config.scm? ------=_Part_56124_1000770418.1540752040646 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Hello, Guix Help! I am not able to use tap on my touchpad. Scroll is working, mouse motion is working, left and right buttons are working, but tap and double click are not working on my touchpad.

As described in the Internet need to use /etc/X11/xorg.conf.d/90-synaptics.conf.
But GuixSD has own filesystem structure, so there is no /etc/X11.

Here it is configuration file xorg.scm: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/xorg.scm?id=v0.15.0-2564-g38a2f5eaf#n2564

I assume xorg configurations ought to be done. Please, how to write my config.scm?
------=_Part_56124_1000770418.1540752040646-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pierre Neidhardt Subject: Re: Touchpad tap Date: Sun, 28 Oct 2018 21:02:27 +0100 Message-ID: <87a7mxn8ks.fsf@ambrevar.xyz> References: Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Return-path: In-reply-to: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: znavko@tutanota.com Cc: Bug Guix , Help Guix List-Id: bug-guix.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi! Consult the manual, "(guix) X Window". There is an example near the end: =2D-8<---------------cut here---------------start------------->8--- (define bepo-evdev "Section \"InputClass\" Identifier \"evdev keyboard catchall\" Driver \"evdev\" MatchIsKeyboard \"on\" Option \"xkb_layout\" \"fr\" Option \"xkb_variant\" \"bepo\" EndSection") (operating-system ... (services (modify-services %desktop-services (slim-service-type config =3D> (slim-configuration (inherit config) (startx (xorg-start-command #:configuration-file (xorg-configuration-file #:extra-config (list bepo-evdev))))))))) =2D-8<---------------cut here---------------end--------------->8--- The above example only details keyboard configuration. For your trackpad, = have a look at libinput's manpage. Also https://wiki.archlinux.org/index.php/Libinput may give you a good cove= rage of the topic. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlvWFdMACgkQm9z0l6S7 zH8cWAf/TVXByJJEPMhRcxWtOJeE2YrpHJSXrXijwuHM6EMlP5rG5tOO/A27LMdq z1hShZvrAgHQgADP6b7kmFQ+rEhFmY+IOr7OGYAwwKLyvWoy7g4r7Nkg/Ep2Hs0O h3ozUeiKp/FXN7njjkoJJleD4vRjQXstbyDvbk+0jAK3pv3lXflNjh1CzAmgcGCt Qle9JouYMHZYoQc2EqSH/YNODc3KYzQhgTgnbSuGWhLUhwioVAQI+uPN1mw6z63E yHmZT91dcv5upG4qR6eOY0gouw53uTAlNmmvY9mmzP3XDNG4XIUEqYv/ilQfHZgH J/Z7xx/veWXHQMN2UaJGaduLjKIJug== =c8oD -----END PGP SIGNATURE----- --=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luther Thompson Subject: Re: Touchpad tap Date: Sun, 28 Oct 2018 19:49:18 -0400 Message-ID: <20181028194918.32e4b6cc@gmail.com> References: <87a7mxn8ks.fsf@ambrevar.xyz> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <87a7mxn8ks.fsf@ambrevar.xyz> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Pierre Neidhardt Cc: Help Guix , Bug Guix List-Id: bug-guix.gnu.org On Sun, 28 Oct 2018 21:02:27 +0100 Pierre Neidhardt wrote: > Hi! > > Consult the manual, "(guix) X Window". There is an example near the > end: > > --8<---------------cut here---------------start------------->8--- > (define bepo-evdev > "Section \"InputClass\" > Identifier \"evdev keyboard catchall\" > Driver \"evdev\" > MatchIsKeyboard \"on\" > Option \"xkb_layout\" \"fr\" > Option \"xkb_variant\" \"bepo\" > EndSection") > > (operating-system > ... > (services > (modify-services %desktop-services > (slim-service-type config => > (slim-configuration > (inherit config) > (startx (xorg-start-command > #:configuration-file > (xorg-configuration-file > #:extra-config > (list bepo-evdev))))))))) > --8<---------------cut here---------------end--------------->8--- > > The above example only details keyboard configuration. For your > trackpad, have a look at libinput's manpage. > Also https://wiki.archlinux.org/index.php/Libinput may give you a > good coverage of the topic. I've been having the same problem on my Think Penguin laptop, and since seeing this email, I've tried modifying my config.scm unsuccessfully. I've run the reconfigure command and rebooted. Here is my services field: ---BEGIN--- (services (cons* (gnome-desktop-service) (console-keymap-service "dvorak") (extra-special-file "/usr/bin/env" (file-append coreutils "/bin/env")) (modify-services %desktop-services (slim-service-type config => (slim-configuration (inherit config) (startx (xorg-start-command #:configuration-file (xorg-configuration-file #:extra-config '( "Section \"InputClass\" Identifier \"keyboard-all\" Option \"XkbLayout\" \"dvorak\" MatchIsKeyboard \"on\" EndSection Section \"InputClass\" Identifier \"touchpad-all\" MatchIsTouchpad \"on\" Option \"DisableWhileTyping\" \"on\" Option \"Tapping\" \"on\" EndSection" )))))) (guix-service-type config => (guix-configuration (inherit config) (substitute-urls (list "https://berlin.guixsd.org" "https://mirror.hydra.gnu.org" "https://hydra.gnu.org"))))))) ---END--- Neither DisableWhileTyping nor Tapping has any effect. I also set the corresponding settings in Gnome Tweaks > Keyboard & Mouse > Touchpad. If I need a Driver field or some specific Identifier, I haven't been able to find a way to determine the correct info for those fields. Luther From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Geerinckx-Rice Subject: bug#33189: Touchpad tap Date: Mon, 29 Oct 2018 01:44:45 +0100 Message-ID: <87woq1bmyq.fsf__12312.5284947038$1540773846$gmane$org@tobias.gr> References: <87a7mxn8ks.fsf@ambrevar.xyz> <20181028194918.32e4b6cc@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39243) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGvg2-0004Ru-1y for bug-guix@gnu.org; Sun, 28 Oct 2018 20:45:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGvfy-0003w7-MA for bug-guix@gnu.org; Sun, 28 Oct 2018 20:45:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45248) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gGvfy-0003vp-9N for bug-guix@gnu.org; Sun, 28 Oct 2018 20:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gGvfy-0005m3-7q for bug-guix@gnu.org; Sun, 28 Oct 2018 20:45:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <20181028194918.32e4b6cc@gmail.com> 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: Luther Thompson , znavko@tutanota.com Cc: 33189@debbugs.gnu.org, Pierre Neidhardt , help-guix@gnu.org Luther, Luther Thompson wrote: > Section \"InputClass\" > Identifier \"touchpad-all\" > MatchIsTouchpad \"on\" > Option \"DisableWhileTyping\" \"on\" > Option \"Tapping\" \"on\" > EndSection" [...] > Neither DisableWhileTyping nor Tapping has any effect. I also > set the > corresponding settings in Gnome Tweaks > Keyboard & Mouse > > Touchpad. > If I need a Driver field or some specific Identifier, I haven't > been > able to find a way to determine the correct info for those > fields. Here's what I use: Section \"InputClass\" Identifier \"Touchpads\" Driver \"libinput\" MatchDevicePath \"/dev/input/event*\" MatchIsTouchpad \"on\" Option \"DisableWhileTyping\" \"on\" Option \"MiddleEmulation\" \"on\" Option \"ClickMethod\" \"clickfinger\" Option \"Tapping\" \"on\" Option \"TappingButtonMap\" \"lrm\" Option \"TappingDrag\" \"on\" Option \"ScrollMethod\" \"twofinger\" Option \"NaturalScrolling\" \"true\" EndSection xinput(1) calls it an 'ETPS/2 Elantech Touchpad'. Kind regards, T G-R From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luther Thompson Subject: bug#33189: Touchpad tap Date: Mon, 29 Oct 2018 00:01:44 -0400 Message-ID: <20181029000144.0d3df56a__655.278928070579$1540785610$gmane$org@gmail.com> References: <87a7mxn8ks.fsf@ambrevar.xyz> <20181028194918.32e4b6cc@gmail.com> <87woq1bmyq.fsf@tobias.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43924) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGykh-0008Tv-2q for bug-guix@gnu.org; Mon, 29 Oct 2018 00:02:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGykc-00041l-3m for bug-guix@gnu.org; Mon, 29 Oct 2018 00:02:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45567) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gGykb-00041Y-TD for bug-guix@gnu.org; Mon, 29 Oct 2018 00:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gGykb-0004O6-Tu for bug-guix@gnu.org; Mon, 29 Oct 2018 00:02:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87woq1bmyq.fsf@tobias.gr> 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: Tobias Geerinckx-Rice Cc: 33189@debbugs.gnu.org, Pierre Neidhardt , help-guix@gnu.org On Mon, 29 Oct 2018 01:44:45 +0100 Tobias Geerinckx-Rice wrote: > Here's what I use: > > Section \"InputClass\" > Identifier \"Touchpads\" > Driver \"libinput\" > MatchDevicePath \"/dev/input/event*\" > MatchIsTouchpad \"on\" > > Option \"DisableWhileTyping\" \"on\" > Option \"MiddleEmulation\" \"on\" > Option \"ClickMethod\" \"clickfinger\" > Option \"Tapping\" \"on\" > Option \"TappingButtonMap\" \"lrm\" > Option \"TappingDrag\" \"on\" > Option \"ScrollMethod\" \"twofinger\" > Option \"NaturalScrolling\" \"true\" > EndSection > > xinput(1) calls it an 'ETPS/2 Elantech Touchpad'. Thanks, but I still can't get it to work. This is my current config: Section \"InputClass\" Identifier \"Touchpads\" Driver \"libinput\" MatchDevicePath \"/dev/input/event*\" MatchIsTouchpad \"on\" Option \"DisableWhileTyping\" \"on\" Option \"Tapping\" \"on\" EndSection I've found from xinput that it's a 'SynPS/2 Synaptics TouchPad' at device node /dev/input/event6. I can't find a way to confirm the driver name. Luther 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms0.migadu.com with LMTPS id OJ79EuK6I2EUPgEAgWs5BA (envelope-from ) for ; Mon, 23 Aug 2021 17:12:34 +0200 Received: from aspmx1.migadu.com ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id OHLJDuK6I2FCLgAA1q6Kng (envelope-from ) for ; Mon, 23 Aug 2021 15:12:34 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 62637DC22 for ; Mon, 23 Aug 2021 17:12:33 +0200 (CEST) Received: from localhost ([::1]:45568 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mIBcm-0000Qk-GM for larch@yhetil.org; Mon, 23 Aug 2021 11:12:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54680) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mI7Tq-0006Yi-T9 for bug-guix@gnu.org; Mon, 23 Aug 2021 06:47:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57280) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mI7Tq-0007BW-LF for bug-guix@gnu.org; Mon, 23 Aug 2021 06:47:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mI7Tq-0008AP-IZ for bug-guix@gnu.org; Mon, 23 Aug 2021 06:47:02 -0400 X-Loop: help-debbugs@gnu.org Subject: bug#33189: (No Subject) References: In-Reply-To: Resent-From: Attila Lendvai Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Mon, 23 Aug 2021 10:47:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 33189 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: "33189@debbugs.gnu.org" <33189@debbugs.gnu.org> Received: via spool by 33189-submit@debbugs.gnu.org id=B33189.162971557631332 (code B ref 33189); Mon, 23 Aug 2021 10:47:02 +0000 Received: (at 33189) by debbugs.gnu.org; 23 Aug 2021 10:46:16 +0000 Received: from localhost ([127.0.0.1]:40592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mI7T2-00089C-Cq for submit@debbugs.gnu.org; Mon, 23 Aug 2021 06:46:16 -0400 Received: from mail-40136.protonmail.ch ([185.70.40.136]:31851) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mI7Sw-00088D-3X for 33189@debbugs.gnu.org; Mon, 23 Aug 2021 06:46:11 -0400 Date: Mon, 23 Aug 2021 10:45:57 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lendvai.name; s=protonmail2; t=1629715559; bh=yNZ630CuBX3XtrOgNLTmQ2QmETUg6Dpjequ8M/24FxU=; h=Date:To:From:Reply-To:Subject:From; b=j6p5aZHR119VaZMMJjWuw4avH52Lt5rFp2q+1UXgkA/AUbcUZcxpTXkXPGrVpPhkT Bf6Fp0T6j/tGUUIgYe6Snw8o0E/StYTIdZdUfZmxjjp5g7/AUGHeyEsF/ijxbIKwYP QHwBoJuJdnlmb4B5xhyehuginDKy34OaqHDoErCrhCYOwLVbt0ZRYUdDS5hIPdogBd hcudZb1O5rgCDT+7bcCTtv6TdE8nh7TrUkejctwVg/fYDT/BYwoACYDiwDaO+bOzbk W4kud7OqmNBu6QaFqmF8ivMN7JBv2T8FXqtLcxQ+BtEoQYH281+ZOJ93T3JrCpfhMZ 02u6upxZtEK0A== From: Attila Lendvai Message-ID: <1lQ8vJ7WT2vDHTA9WyvVFKbMtAMzePtjxu6gwolsbJZ8Qpu7O5oRlacRMfCRWaqy1_klrt8CwclaxA4W41e99UeJSMqYBkGo6KKL5o8jicI=@lendvai.name> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="b1_myozfnup4LGuVGHmI6wJG9P1gcgc8sZtqOvLKcpoPhc" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-Mailman-Approved-At: Mon, 23 Aug 2021 11:12:24 -0400 X-BeenThere: bug-guix@gnu.org List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Attila Lendvai Errors-To: bug-guix-bounces+larch=yhetil.org@gnu.org Sender: "bug-Guix" X-Migadu-Flow: FLOW_IN ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=yhetil.org; s=key1; t=1629731553; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type:resent-cc:resent-from:resent-sender: resent-message-id:in-reply-to:in-reply-to:references:references: list-id:list-help:list-unsubscribe:list-subscribe:list-post: dkim-signature; bh=yNZ630CuBX3XtrOgNLTmQ2QmETUg6Dpjequ8M/24FxU=; b=HWjkxsFy8Dw8FrIdqIjtB+ZJlrXxdg0MOS2LO47fPXTHYhquEOPWF2GnUM5g7vF6nwewIJ DGW35nLCAAfhMufWuwajj9kdAVrF/hJhGjO3n4WHg+pCPLmGLBPk+1dJvhhq9f69V9g2Qm 2lEKHTNk1p6pSSpc/s38jWouU5KC5wDcEMAoT8jGxTr1j4Y/4+l6oQeBp4NIPeorJMHZTU zV7Ilygfgxq7G77mcFTQ2fOEMGMTwpjCeMZYDKL5hWw1pgCIKiWeWYAk1fB1YWFLglRmbk chbhsTwrnEn2eH6DkBFlLQ/cOBu0d2KTV5UY6Ydb+K+KXIQDmrupuR1d/GI03Q== ARC-Seal: i=1; s=key1; d=yhetil.org; t=1629731553; a=rsa-sha256; cv=none; b=LSzfrM+MzbZscNqZRYOrRqg7bQXDZ9xHtb4o9zhzbLAPl/d3O+bjNGEd0mdUQqYVoENDJX AK4OdogR1uNiU+En3sKyWktDvo6qgQKV8XGesVnlvud19bCp0BctaueWvlSsvYCgF6f2ws hghUeK+XwfYx0yj19ayEkwFreyRH9AZyeksTYIkFP8KK1WQIXqpFgTAoObqw0u274xLSvl dr+CyEBtXeK1DCNVK6tiLc5lQ8pBRjw0B9GFDks88Fd0sjKQAnpDHROUPcikw/Lh/BOy6m cgSk3nPrQXFK7TYQGmeI/PYAf8YF/7epKrLCsT+kdRdCgMVTq4LyTeoTHJHGXQ== ARC-Authentication-Results: i=1; aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=lendvai.name header.s=protonmail2 header.b=j6p5aZHR; spf=pass (aspmx1.migadu.com: domain of bug-guix-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=bug-guix-bounces@gnu.org X-Migadu-Spam-Score: -0.32 Authentication-Results: aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=lendvai.name header.s=protonmail2 header.b=j6p5aZHR; dmarc=none; spf=pass (aspmx1.migadu.com: domain of bug-guix-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=bug-guix-bounces@gnu.org X-Migadu-Queue-Id: 62637DC22 X-Spam-Score: -0.32 X-Migadu-Scanner: scn0.migadu.com X-TUID: HyuSGfzNr5il This is a multi-part message in MIME format. --b1_myozfnup4LGuVGHmI6wJG9P1gcgc8sZtqOvLKcpoPhc Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: base64 ZmVlZGJhY2sgZnJvbSBhIG5ld2NvbWVyIHRvIEd1aXg6CgppIHN1Z2dlc3QgYSBoaWdoZXIgcHJp b3JpdHkgZm9yIHRoaXMgYnVnLCBiZWNhdXNlIGl0IGFmZmVjdHMganVzdCBhYm91dCBhbnlvbmUg d2hvIGluc3RhbGxzIEd1aXggb24gYSBsYXB0b3AsIGFuZCB3aG9zZSBuZXVyb25zIGFyZSB1c2Vk IHRvIG5hdHVyYWwgc2Nyb2xsaW5nLCBhbmQvb3IgdGFwIHRvIGNsaWNrLgoKaSBoYXZlIHNwZW50 IGEgY291cGxlIG9mIGRheXMgYW5ub3llZCB1bnRpbCBpIGdvdCB0byByZXNvbHZlIHRoaXMgaXNz dWUgZmluYWxseSAodGhhbmsgeW91IEFsZXggR3JpZmZpbiEpLgoKLSBhdHRpbGEKUEdQOiA1RDVG IDQ1QzcgREZDRCAwQTM5 --b1_myozfnup4LGuVGHmI6wJG9P1gcgc8sZtqOvLKcpoPhc Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: base64 PGRpdj5mZWVkYmFjayBmcm9tIGEgbmV3Y29tZXIgdG8gR3VpeDo8YnI+PC9kaXY+PGRpdj48YnI+ PC9kaXY+PGRpdj5pIHN1Z2dlc3QgYSBoaWdoZXIgcHJpb3JpdHkgZm9yIHRoaXMgYnVnLCBiZWNh dXNlIGl0IGFmZmVjdHMganVzdCBhYm91dCBhbnlvbmUgd2hvIGluc3RhbGxzIEd1aXggb24gYSBs YXB0b3AsIGFuZCB3aG9zZSBuZXVyb25zIGFyZSB1c2VkIHRvIG5hdHVyYWwgc2Nyb2xsaW5nLCBh bmQvb3IgdGFwIHRvIGNsaWNrLjxicj48L2Rpdj48ZGl2Pjxicj48L2Rpdj48ZGl2PmkgaGF2ZSBz cGVudCBhIGNvdXBsZSBvZiBkYXlzIGFubm95ZWQgdW50aWwgaSBnb3QgdG8gcmVzb2x2ZSB0aGlz IGlzc3VlIGZpbmFsbHkgKHRoYW5rIHlvdSA8c3BhbiBjbGFzcz0iYWRkcmVzcyI+QWxleCBHcmlm ZmluITwvc3Bhbj4pLjxicj48L2Rpdj48ZGl2Pjxicj48L2Rpdj48ZGl2IGNsYXNzPSJwcm90b25t YWlsX3NpZ25hdHVyZV9ibG9jayI+PGRpdiBjbGFzcz0icHJvdG9ubWFpbF9zaWduYXR1cmVfYmxv Y2stdXNlciI+PGRpdj4tIGF0dGlsYTxicj48L2Rpdj48ZGl2PlBHUDombmJzcDs1RDVGIDQ1Qzcg REZDRCAwQTM5PGJyPjwvZGl2PjxkaXY+PGJyPjwvZGl2PjwvZGl2PjwvZGl2PjxkaXY+PGJyPjwv ZGl2Pg== --b1_myozfnup4LGuVGHmI6wJG9P1gcgc8sZtqOvLKcpoPhc-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp12.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms0.migadu.com with LMTPS id cBGVERIAPmL/CAEAgWs5BA (envelope-from ) for ; Fri, 25 Mar 2022 18:46:58 +0100 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp12.migadu.com with LMTPS id IJUyDhIAPmK9TAAAauVa8A (envelope-from ) for ; Fri, 25 Mar 2022 18:46:58 +0100 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id E9F712FB9B for ; Fri, 25 Mar 2022 18:46:57 +0100 (CET) Received: from localhost ([::1]:46276 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nXo1Z-00071h-5t for larch@yhetil.org; Fri, 25 Mar 2022 13:46:57 -0400 Received: from eggs.gnu.org ([209.51.188.92]:43940) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nXo0i-0006vV-PV for bug-guix@gnu.org; Fri, 25 Mar 2022 13:46:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58471) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1nXo0f-0005MW-Ok for bug-guix@gnu.org; Fri, 25 Mar 2022 13:46:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1nXo0f-0004ez-NQ for bug-guix@gnu.org; Fri, 25 Mar 2022 13:46:01 -0400 Subject: bug#33189: Touchpad tap Resent-From: Mathieu Othacehe Original-Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Date: Fri, 25 Mar 2022 17:46:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 33189 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Attila Lendvai Mail-Followup-To: 33189@debbugs.gnu.org, othacehe@gnu.org, znavko@tutanota.com Received: via spool by 33189-done@debbugs.gnu.org id=D33189.164823031217849 (code D ref 33189); Fri, 25 Mar 2022 17:46:01 +0000 Received: (at 33189-done) by debbugs.gnu.org; 25 Mar 2022 17:45:12 +0000 Received: from localhost ([127.0.0.1]:52367 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nXnzs-0004dp-97 for submit@debbugs.gnu.org; Fri, 25 Mar 2022 13:45:12 -0400 Received: from eggs.gnu.org ([209.51.188.92]:56002) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nXnzq-0004da-7r for 33189-done@debbugs.gnu.org; Fri, 25 Mar 2022 13:45:10 -0400 Received: from [2001:470:142:3::e] (port=48208 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nXnzj-0005Eo-Tm; Fri, 25 Mar 2022 13:45:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=owq1hyOYCKwywWF+YblRdJiN1D6qmwdAYEwO0KC4ZpA=; b=T5i0Z6fMbCiroemzPNGX qaCy3yN7HYoY8DVzJCx7uShneLxVdp7Fn+krCFgmvxkcNx5DcXqK8z9fgu0dZVVaCBE+SeELM3Afk 33+HBKELdQel4Zv6lAdpAWLBRd3HODBct381SwUbDOsRdxlKNM5KSvJ+A4IksavMpdY7QaqC/DqFd xbq5dxwJsoPQTpkgEirt3JupmDcJSsxeqVHx/6NsnVzDR/SYxSNRq7tS/bIK3Ag6Zq1zVBnN07jGp /bsRn+rws9pC3fy7cHggANxnyB0XEtBw4oL8FVYl46ZQ+7rZLQp06DxS/1FM4lFuGtIE1x9dRS9TK qAC3Nv4HDoFNDA==; Received: from 71.125.192.77.rev.sfr.net ([77.192.125.71]:42210 helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nXnzh-0000nr-Ml; Fri, 25 Mar 2022 13:45:02 -0400 From: Mathieu Othacehe References: <1lQ8vJ7WT2vDHTA9WyvVFKbMtAMzePtjxu6gwolsbJZ8Qpu7O5oRlacRMfCRWaqy1_klrt8CwclaxA4W41e99UeJSMqYBkGo6KKL5o8jicI=@lendvai.name> Date: Fri, 25 Mar 2022 18:44:58 +0100 In-Reply-To: <1lQ8vJ7WT2vDHTA9WyvVFKbMtAMzePtjxu6gwolsbJZ8Qpu7O5oRlacRMfCRWaqy1_klrt8CwclaxA4W41e99UeJSMqYBkGo6KKL5o8jicI=@lendvai.name> (Attila Lendvai's message of "Mon, 23 Aug 2021 10:45:57 +0000") Message-ID: <87v8w2gc4l.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-guix@gnu.org List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: 33189-done@debbugs.gnu.org Errors-To: bug-guix-bounces+larch=yhetil.org@gnu.org Sender: "bug-Guix" X-Migadu-Flow: FLOW_IN X-Migadu-To: larch@yhetil.org X-Migadu-Country: US ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=yhetil.org; s=key1; t=1648230418; h=from:from:sender:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type:resent-to:resent-from:resent-sender: resent-message-id:in-reply-to:in-reply-to:references:references: list-id:list-help:list-unsubscribe:list-subscribe:list-post: dkim-signature; bh=owq1hyOYCKwywWF+YblRdJiN1D6qmwdAYEwO0KC4ZpA=; b=oSMMU+3kf0ZX2tffoZU8HHZSHfHcdCOTqM8RnaV78D392hlu/uVDK5yrn4XHtOsaeMBGA8 gHTzk2nD6rt+4B7znngxbCxIRnSI3y9LQyNfb6l3gh/bW7/7iBGuncw5PaZ5nNMcnCK3jU iGTxXtz256jy5pigatr9j727Z83OrQywHDyTnP4iVhFILHpBhHT8+5ncLhggpX34g06ZMH pJlPoXawIuQC/L9KtveqJfN3aoFvKhp/sJYpy+i30V7yZJiXWgruWyDtEQSLTBagQZSJ2P kPl49LekIpO5YiEvjlBxUIUv4KwPWNwduqJAwfo4ZBsRHUTpsmz4ailljZZ5/A== ARC-Seal: i=1; s=key1; d=yhetil.org; t=1648230418; a=rsa-sha256; cv=none; b=Lf1IKqhCJYFIVfu4qKsGBc7BO3O4Up8+skaZZC3KfFLIenXqfTs4pQ0NlSz34GkuBhi/QR hXkC8EzeDlSp3BJx/wPxddeTge91wZMzsEaaU+bUqMLEnWCiE3RDBjs5eXJToF8jPYi9ln vTOeBzGBagWIZh0AXuXrP0MUWNA52CYwWMe/QzAQXnU7O8xfZv3UL5ukBjPv/EtnR7HtaK 016UjE9tte6XnhzGLV1q2DrZje9yjm3nv2fkgRj+7uLs14EsIHB5w53oQxDMvsjmiEk0h5 JjlyVtb10BD2TzljPb5IW4eZnzy3KWRT36byh+otbRqcXZbXh9ZfPKBGhtgIBA== ARC-Authentication-Results: i=1; aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=T5i0Z6fM; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of "bug-guix-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="bug-guix-bounces+larch=yhetil.org@gnu.org" X-Migadu-Spam-Score: -3.78 Authentication-Results: aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=T5i0Z6fM; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of "bug-guix-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="bug-guix-bounces+larch=yhetil.org@gnu.org" X-Migadu-Queue-Id: E9F712FB9B X-Spam-Score: -3.78 X-Migadu-Scanner: scn0.migadu.com X-TUID: z8a/ALS+Rbya This one should now be fixed with: 2e55a4c6b9153fd1db60122cb29cee466693a753. Thanks, Mathieu From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Geerinckx-Rice Subject: Re: bug#33189: Touchpad tap Date: Mon, 29 Oct 2018 01:44:45 +0100 Message-ID: <87woq1bmyq.fsf@tobias.gr> References: <87a7mxn8ks.fsf@ambrevar.xyz> <20181028194918.32e4b6cc@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39080) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGvfj-0004El-Em for help-guix@gnu.org; Sun, 28 Oct 2018 20:44:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGvfi-0003jf-I4 for help-guix@gnu.org; Sun, 28 Oct 2018 20:44:47 -0400 Received: from tobias.gr ([2001:470:7405::1]:36366) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gGvfg-0003gV-Hl for help-guix@gnu.org; Sun, 28 Oct 2018 20:44:46 -0400 In-reply-to: <20181028194918.32e4b6cc@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Luther Thompson , znavko@tutanota.com Cc: 33189@debbugs.gnu.org, help-guix@gnu.org Luther, Luther Thompson wrote: > Section \"InputClass\" > Identifier \"touchpad-all\" > MatchIsTouchpad \"on\" > Option \"DisableWhileTyping\" \"on\" > Option \"Tapping\" \"on\" > EndSection" [...] > Neither DisableWhileTyping nor Tapping has any effect. I also > set the > corresponding settings in Gnome Tweaks > Keyboard & Mouse > > Touchpad. > If I need a Driver field or some specific Identifier, I haven't > been > able to find a way to determine the correct info for those > fields. Here's what I use: Section \"InputClass\" Identifier \"Touchpads\" Driver \"libinput\" MatchDevicePath \"/dev/input/event*\" MatchIsTouchpad \"on\" Option \"DisableWhileTyping\" \"on\" Option \"MiddleEmulation\" \"on\" Option \"ClickMethod\" \"clickfinger\" Option \"Tapping\" \"on\" Option \"TappingButtonMap\" \"lrm\" Option \"TappingDrag\" \"on\" Option \"ScrollMethod\" \"twofinger\" Option \"NaturalScrolling\" \"true\" EndSection xinput(1) calls it an 'ETPS/2 Elantech Touchpad'. Kind regards, T G-R From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luther Thompson Subject: Re: bug#33189: Touchpad tap Date: Mon, 29 Oct 2018 00:01:44 -0400 Message-ID: <20181029000144.0d3df56a@gmail.com> References: <87a7mxn8ks.fsf@ambrevar.xyz> <20181028194918.32e4b6cc@gmail.com> <87woq1bmyq.fsf@tobias.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43792) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGykT-0008Mj-M4 for help-guix@gnu.org; Mon, 29 Oct 2018 00:01:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGykS-0003vA-Np for help-guix@gnu.org; Mon, 29 Oct 2018 00:01:53 -0400 Received: from mail-vk1-xa2d.google.com ([2607:f8b0:4864:20::a2d]:33859) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gGykS-0003ux-F0 for help-guix@gnu.org; Mon, 29 Oct 2018 00:01:52 -0400 Received: by mail-vk1-xa2d.google.com with SMTP id b65-v6so1709474vkf.1 for ; Sun, 28 Oct 2018 21:01:51 -0700 (PDT) In-Reply-To: <87woq1bmyq.fsf@tobias.gr> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Tobias Geerinckx-Rice Cc: 33189@debbugs.gnu.org, help-guix@gnu.org On Mon, 29 Oct 2018 01:44:45 +0100 Tobias Geerinckx-Rice wrote: > Here's what I use: > > Section \"InputClass\" > Identifier \"Touchpads\" > Driver \"libinput\" > MatchDevicePath \"/dev/input/event*\" > MatchIsTouchpad \"on\" > > Option \"DisableWhileTyping\" \"on\" > Option \"MiddleEmulation\" \"on\" > Option \"ClickMethod\" \"clickfinger\" > Option \"Tapping\" \"on\" > Option \"TappingButtonMap\" \"lrm\" > Option \"TappingDrag\" \"on\" > Option \"ScrollMethod\" \"twofinger\" > Option \"NaturalScrolling\" \"true\" > EndSection > > xinput(1) calls it an 'ETPS/2 Elantech Touchpad'. Thanks, but I still can't get it to work. This is my current config: Section \"InputClass\" Identifier \"Touchpads\" Driver \"libinput\" MatchDevicePath \"/dev/input/event*\" MatchIsTouchpad \"on\" Option \"DisableWhileTyping\" \"on\" Option \"Tapping\" \"on\" EndSection I've found from xinput that it's a 'SynPS/2 Synaptics TouchPad' at device node /dev/input/event6. I can't find a way to confirm the driver name. Luther