Skip to content

Instantly share code, notes, and snippets.

@praton1729
Created July 4, 2019 06:10
Show Gist options
  • Save praton1729/6c36a153e1b3a4118b8a1373362d543e to your computer and use it in GitHub Desktop.
Save praton1729/6c36a153e1b3a4118b8a1373362d543e to your computer and use it in GitHub Desktop.
A small bash script to enable the tap to click option i3
sudo mkdir -p /etc/X11/xorg.conf.d && sudo tee <<'EOF' /etc/X11/xorg.conf.d/90-touchpad.conf 1> /dev/null
Section "InputClass"
Identifier "touchpad"
MatchIsTouchpad "on"
Driver "libinput"
Option "Tapping" "on"
EndSection
EOF
@praton1729
Copy link
Author

Tested on my local setup and found to be working. Please comment if you face any problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment