Skip to content

Instantly share code, notes, and snippets.

@noahbliss
Created October 17, 2019 13:58
Show Gist options
  • Save noahbliss/4f383d036a6bbd090399dc5d9699ec78 to your computer and use it in GitHub Desktop.
Save noahbliss/4f383d036a6bbd090399dc5d9699ec78 to your computer and use it in GitHub Desktop.
Mac-like trackpad settings. (no right click area, 2 finger click anywhere)
# 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