[SOLUTION] Enable TrackPoint Middle Button Scrolling

I got the following to work for enabling middle button scrolling in Mageia 2. [I used System Settings - Configure Your Desktop > Input Devices > Touchpad; to disable the TrackPad on my ThinkPad, as I don't use that.]
Create the following file as root:
Put the following content in that file:
Create the following file as root:
- Code: Select all
/etc/X11/xorg.conf.d/20-thinkpad-trackpoint.conf
Put the following content in that file:
- Code: Select all
Section "InputClass"
Identifier "Trackpoint Wheel Emulation"
MatchProduct "TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint|USB Trackpoint pointing device|Composite TouchPad / TrackPoint"
MatchDevicePath "/dev/input/event*"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "Emulate3Buttons" "false"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection