Created
July 4, 2019 06:10
-
-
Save praton1729/6c36a153e1b3a4118b8a1373362d543e to your computer and use it in GitHub Desktop.
A small bash script to enable the tap to click option i3
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tested on my local setup and found to be working. Please comment if you face any problem.