1

I'm using a Lenovo x230 laptop which features a touchpad and a trackpoint. I love the trackpoint and dislike the touchpad -- I continuously hit it with my thumb.

I would like to disable the touchpad, but leave everything else working. I've tried using xinput by putting the following in my .xinitrc:

$ xinput --disable 'SynPS/2 Synaptics TouchPad'

This works, however, after a few minutes, the touchpad becomes enabled again. I'm not sure why this is happening. Is this the best way to persistently disable the touchpad?

oneself
  • 275

1 Answers1

4

The following methods will ensure your changes persist as long as you use gnome:

  1. Install and run dconf-editor (if you're on 12.10, dconf-editor might be pre-installed):

    $ sudo apt-get install dconf-tools

    $ dconf-editor

  2. Go to the following settings directory:

    org.gnome.settings-daemon.peripherals

  3. Under touchpad, uncheck the touchpad-enabled checkbox.

If you prefer not to meddle with dconf-editor's GUI, run the following command instead:

gsettings set org.gnome.settings-daemon.peripherals.touchpad touchpad-enabled false
oaskamay
  • 657
  • 1
  • 9
  • 21