View Single Post
  #3   (View Single Post)  
Old 24th March 2024
BingWithLessSandwich's Avatar
BingWithLessSandwich BingWithLessSandwich is offline
New User
 
Join Date: Mar 2024
Posts: 5
Default [SOLUTION]

All I needed to do was create a directory xorg.conf.d in /etc/X11 and inside that directory create a file called 30-touchpad.conf

And simply paste this inside the file
Code:
Section "InputClass"
    Identifier "touchpad"
    Driver "libinput"
    MatchIsTouchpad "on"
    Option "Tapping" "on"
    Option "TappingButtonMap" "lmr"
EndSection

Last edited by BingWithLessSandwich; 6th April 2024 at 07:09 AM.
Reply With Quote