Ubuntu Disabling TouchScreen: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
 Created page with " ==Ubuntu-mate 20.04== Tested on ubuntu-mate 20.04<br \> To disable the touchscreen in ubuntu-mate 20.04 you need to edit the file <code>40-libinput.conf</code><br \> And change the line <code>MatchIsTouchscreen "on"</code> To <code>MatchIsTouchscreen "off"</code>.  <code>$EDITOR /usr/share/X11/xorg.conf.d/40-libinput.conf</code>  <pre> Section "InputClass"         Identifier "libinput touchscreen catchall"         MatchIsTouchscreen "on"         MatchDevicePath "/dev/in..."  | 
			
(No difference) 
 | 
Latest revision as of 17:20, 5 March 2023
Ubuntu-mate 20.04
Tested on ubuntu-mate 20.04
To disable the touchscreen in ubuntu-mate 20.04 you need to edit the file 40-libinput.conf
And change the line MatchIsTouchscreen "on" To MatchIsTouchscreen "off".
$EDITOR /usr/share/X11/xorg.conf.d/40-libinput.conf
Section "InputClass"
        Identifier "libinput touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection
Change to:
Section "InputClass"
        Identifier "libinput touchscreen catchall"
        MatchIsTouchscreen "off"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection