Created
October 17, 2019 13:58
-
-
Save noahbliss/4f383d036a6bbd090399dc5d9699ec78 to your computer and use it in GitHub Desktop.
Mac-like trackpad settings. (no right click area, 2 finger click anywhere)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For at least suse, the file to edit is "/usr/share/X11/xorg.conf.d/40-libinput.conf" restart display manager after changes. | |
# The important line to add is the ClickMethod one below. See https://wiki.archlinux.org/index.php/Libinput for more info. | |
Section "InputClass" | |
Identifier "libinput touchpad catchall" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
Driver "libinput" | |
Option "Tapping" "On" | |
Option "ClickMethod" "clickfinger" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment