2

How do I enable/disable a stick pointing device in Ubuntu (9.10)? How can I configure clicking and scrolling with the stick pointer? (I can't click with the stick and scroll the page.)

4
  • 1
    More details please. What version of Ubuntu, what hardware? What did you try, what happened?
    – sleske
    Commented Feb 16, 2010 at 11:27
  • 1
    It's a pointing stick, not a sticking point. That might be a sticking point for readers of your pointing stick question.
    – mmyers
    Commented Feb 18, 2010 at 22:39
  • @mmyers good point, edits stuck. Commented Feb 19, 2010 at 11:17
  • I agree with sleske--much more information is needed, like exactly what device.
    – CarlF
    Commented Feb 20, 2010 at 16:02

1 Answer 1

3

for gui solution

$ sudo apt-get install gpointing-device-settings
$ gpointing-device-settings

for command line

$ xinput list
# find your device name there
$ xinput list-props "PointingStick" # the name can be different
# this will list available settings for that pointing stick
$ xinput set-*-prop "PointingStick" ...
# to set a property, see man page for more how to set properties

an example how to set it for thinkpad
$ xinput set-int-prop '"TPPS/2 IBM TrackPoint"' "Evdev Wheel Emulation" 8 1
$ xinput set-int-prop '"TPPS/2 IBM TrackPoint"' "Evdev Wheel Emulation Button" 8 2
$ xinput set-int-prop '"TPPS/2 IBM TrackPoint"' "Evdev Wheel Emulation Timeout" 8 200

to disable device
$ xinput set-int-prop "TPPS/2 IBM TrackPoint" "Device Enabled" 8 0
to enable 
$ xinput set-int-prop "TPPS/2 IBM TrackPoint" "Device Enabled" 8 1

For more information see this and this.

5
  • How to disable point stick ? Commented Feb 18, 2010 at 20:58
  • 1
    something like xinput set-int-prop "TPPS/2 IBM TrackPoint" "Device Enabled" 8 0
    – Egon
    Commented Feb 20, 2010 at 14:58
  • @SjB: did it help or not?
    – Egon
    Commented Feb 21, 2010 at 16:05
  • No i can't disable it Commented Feb 23, 2010 at 10:10
  • @SjB so does it show an error message or just doesn't work? What exactly did you try? (just in case: Did you adjust the name of the pointing device?)
    – Egon
    Commented Feb 23, 2010 at 19:26

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .