Syamsul 'isul' Arifin

kartunis dan desainer

Mon, May 14, 2018

How to Disable Touchpad in Debian Mate

touchpad

The common way to disable touchpad in Debian/Ubuntu are use synclient or xinput. I tried synclient but was not working. I tried xinput by putting device ID but it’s not safe because if you plugged flashdisk, wacom etc in USB port, device ID will change.

This way is a xinput way but using device name.

  1. Install xinput.
sudo apt install xinput
  1. Type this in terminal to find the device.
xinput list
  1. Copy the device name. xinput list

  2. Type this syntaxt and paste the device name

xinput disable 'ETPS/2 Elantech Touchpad'
  1. If you want to disable touchpad on startup, just add the syntaxt to Startup Applications. Startup Applications

PS: I think this way will working in Ubuntu Mate too.

Disable Touchpad in Lubuntu

To disable touchpad in Lubuntu (LXDE) is same way. But it’s different to make this work on startup.This is the way to make it on start up in Lubuntu (make autostart).

  1. Go to ~/.config/autostart. Make file in this folder. For example, “disabletouchpad.desktop”.

  2. Add the syntaxt (xinput disable “device name”) in exec section.

[Desktop Entry]
Name=Disable Touchpad Autostart
Type=Application
Exec=xinput disable 'ETPS/2 Elantech Touchpad'

inspiration Link: https://askubuntu.com/questions/65951/how-to-disable-the-touchpad

comments powered by Disqus