Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 417 Bytes

laptoppad.md

File metadata and controls

18 lines (13 loc) · 417 Bytes

Instructions for working of touchpad on linux laptops

For working of touchpad on linux install libinput

pacman -S libinput

Add the following to /etc/X11/xorg.conf.d/30-touchpad.conf

Section "InputClass"  
    Identifier "touchpad"  
   	    Driver "libinput"  
    MatchIsTouchpad "on"  
    Option "tapping" "on"  
    Option "AccelProfile" "adaptive"  
    Option "TappingButtonMap" "lrm"  
EndSection