mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-08 18:49:44 +00:00
2 KiB
2 KiB
title | date | lastmod | draft | keywords | description | tags | categories | author | comment | toc | autoCollapseToc | postMetaInFooter | hiddenFromHomePage | contentCopyright | reward | mathjax | mathjaxEnableSingleDollar | mathjaxEnableAutoNumber | hideHeaderAndFooter | flowchartDiagrams | sequenceDiagrams | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Enable Tap to Click and Other Features in Linux | 2021-03-03T06:46:01Z | 2022-04-29T06:46:01Z | false |
|
|
|
false | true | false | true | false | false | false | false | false | false | false |
|
|
It should be easy.
If your touchpad is not working
Edit /etc/default/grub
to pass kernel parameter (docs):
GRUB_CMDLINE_LINUX_DEFAULT="i8042.nopnp=1"
Leave other paramters as is. Generate configuration file as normal and reboot.
Make touchpad more useful
Works for most Synaptics and ALPS touchpads. Requires xf86-input-synaptics
.
Edit /etc/X11/xorg.conf.d/70-synaptics.conf
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "VertTwoFingerScroll" "on"
Option "HorizTwoFingerScroll" "on"
EndSection
Log out and log in.