Greets.
Hope I can define the problem properly:
an old Asus laptop has 2 touchpad buttons and a scroll button between them. Using a Lubuntu-based distro (Peppermint), I am trying to enable continuous scrolling with the scroll button, so that I shouldn't press it repeatedly for scrolling.
Code:
xinput --list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ SynPS/2 Synaptics TouchPad id=11 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Power Button id=7 [slave keyboard (3)]
↳ Sleep Button id=8 [slave keyboard (3)]
↳ Asus Laptop extra buttons id=9 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=10 [slave keyboard (3)]
gpointing-device-settings couldn't solve the issue.
I read xorg.conf is not necessary in this case, so I edited
/usr/share/X11/xorg.conf.d/50-synaptics.conf like this (the lines starting with "Option" are my amendments):
Code:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "SHMConfig" "True"
Option "UpDownScrolling" "True"
Option "ScrollButtonRepeat" "10"
Option "UpDownScrollRepeat" "True"
EndSection
Strangely I can't see any difference with
Code:
xinput list-props 11
Device 'SynPS/2 Synaptics TouchPad':
Device Enabled (136): 1
Coordinate Transformation Matrix (138): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (256): 1
Device Accel Constant Deceleration (257): 2.500000
Device Accel Adaptive Deceleration (258): 1.000000
Device Accel Velocity Scaling (259): 12.500000
Synaptics Edges (260): 1752, 5192, 1620, 4236
Synaptics Finger (261): 24, 29, 255
Synaptics Tap Time (262): 180
Synaptics Tap Move (263): 221
Synaptics Tap Durations (264): 180, 180, 100
Synaptics Tap FastTap (265): 0
Synaptics Middle Button Timeout (266): 75
Synaptics Two-Finger Pressure (267): 280
Synaptics Two-Finger Width (268): 6
Synaptics Scrolling Distance (269): 100, 100
Synaptics Edge Scrolling (270): 1, 0, 0
Synaptics Two-Finger Scrolling (271): 1, 0
Synaptics Move Speed (272): 1.000000, 1.750000, 0.039809, 40.000000
Synaptics Edge Motion Pressure (273): 29, 159
Synaptics Edge Motion Speed (274): 1, 401
Synaptics Edge Motion Always (275): 0
Synaptics Off (276): 0
Synaptics Locked Drags (277): 0
Synaptics Locked Drags Timeout (278): 5000
Synaptics Tap Action (279): 2, 3, 0, 0, 1, 2, 3
Synaptics Click Action (280): 1, 1, 1
Synaptics Circular Scrolling (281): 0
Synaptics Circular Scrolling Distance (282): 0.100000
Synaptics Circular Scrolling Trigger (283): 0
Synaptics Circular Pad (284): 0
Synaptics Palm Detection (285): 0
Synaptics Palm Dimensions (286): 9, 199
Synaptics Coasting Speed (287): 20.000000, 50.000000
Synaptics Pressure Motion (288): 29, 159
Synaptics Pressure Motion Factor (289): 1.000000, 1.000000
Synaptics Grab Event Device (290): 1
Synaptics Gestures (291): 1
Synaptics Capabilities (292): 1, 0, 1, 1, 1, 1, 1
Synaptics Pad Resolution (293): 94, 85
Synaptics Area (294): 0, 0, 0, 0
Synaptics Jumpy Cursor Threshold (295): 0
used links:
http://askubuntu.com/questions/4662/...figure-x-there
http://askubuntu.com/questions/18482...ce/18924#18924
Maybe I am searching for the wrong options / config files?
Thanx if you know sg!
Byte!