mirror of
				https://github.com/sahinakkaya/til.git
				synced 2025-07-17 14:01:49 +03:00 
			
		
		
		
	TIL: Enabling basic touchpad functionality
This commit is contained in:
		
							
								
								
									
										11
									
								
								system/enabling-basic-touchpad-functionality.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								system/enabling-basic-touchpad-functionality.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,11 @@
 | 
			
		||||
When you install a new system, touchpad may not work as you expect. The scrolling direction is probably reversed and tap to click is not enabled. You can fix it by creating a file `/etc/X11/xorg.conf.d/30-touchpad.conf` and put the following content inside it:
 | 
			
		||||
```
 | 
			
		||||
Section "InputClass"
 | 
			
		||||
    Identifier "touchpad catchall"
 | 
			
		||||
    Driver "libinput"
 | 
			
		||||
    Option "Tapping" "on"
 | 
			
		||||
    Option "NaturalScrolling" "true"
 | 
			
		||||
EndSection
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
After that you need to restart X server.
 | 
			
		||||
		Reference in New Issue
	
	Block a user