Hello projectxmatt
Like you, I have an Alps touchpad in my laptop. To get it to work I have to modify my /etc/xorg.conf file.
Please note that I haven't tried it on F11 yet, only F10 and F9.
If you don't have an xorg.conf file, it is possible to generate one with the Display program from the administration menu. It's not installed by default so:
Code:
yum install system-config-display
will get it for you.
Please also note that the top left of a touchpad is defined as zero. All distances are specified from there. My display is an old fashioned 4:3 ratio and I specified very narrow scroll areas. If your screen is one of the newer widescreen ratios or you require wider scroll areas some of the numbers may need changing.
Quote:
I had to modify my xorg.conf file to include the following:
Quote:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "SendCoreEvents"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
Option "LeftEdge" "120"
Option "RightEdge" "920"
Option "TopEdge" "120"
Option "BottomEdge" "680"
Option "FingerLow" "14"
Option "FingerHigh" "15"
Option "MaxTapMove" "110"
Option "VertScrollDelta" "20"
Option "HorizScrollDelta" "20"
Option "MinSpeed" "0.4"
Option "MaxSpeed" "0.99"
Option "AccelFactor" "0.035"
Option "MinTapTime" "110"
Option "MaxTapTime" "350"
Option "ClickTime" "0"
EndSection
|
Some of the "Section "ServerLayout"" you will probably already have.
Quote:
Option "MinSpeed" "0.4"
Option "MaxSpeed" "0.99"
Option "AccelFactor" "0.035"
|
control pointer movement, and:
Quote:
Option "FingerLow" "14"
Option "FingerHigh" "15"
|
control tapping. This final section controls double tapping and by extension "tap to drag"
Quote:
Option "MinTapTime" "110"
Option "MaxTapTime" "350"
Option "ClickTime" "0"
|
One or two notes from experience of sharing these instructions.
Do make a backup of the 'xorg.conf' file before you start altering it and make sure that you can restore it from the command line if necessary. One spelling mistake in this and you graphical environment won't start.
You should already have a section in that file headed "Section "ServerLayout"". Just the one line in red needs adding to that.
The section "Section "InputDevice"" will need to be created in its entirety. There will already be an "InputDevice" section to do with the keyboard. This part is completely in addition to that.
On a Synaptics touchpad machine you would just need to add the part highlighted red and green.
The numbers for Right and Bottom edges may be wrong for your pad. They are based on one of what we may call standard size pads, not a widescreen pad. Zero starts in the top left corner for all dimensions and you may need to adjust those to suit your circumstances.
The parts in blue are just explanations of what some of the configuration options do.
|
Post back if you want to talk about any of that.