Jump to content

touchpad & optical mouse [solved]


 Share

Recommended Posts

I'd like to use an optical mouse on my Dell Inspiron 5160 and still have the touchpad fully functional.

 

I replaced:

 

Section "InputDevice"

Identifier "SynapticsMouse1"

Driver "synaptics"

Option "Protocol" "auto-dev"

Option "Device" "/dev/input/mice"

Option "MinSpeed" "0.06"

Option "MaxSpeed" "0.12"

Option "BottomEdge" "4200"

Option "SHMConfig" "on"

Option "LeftEdge" "1700"

Option "FingerLow" "25"

Option "MaxTapTime" "180"

Option "MaxTapMove" "220"

Option "FingerHigh" "30"

Option "VertScrollDelta" "100"

Option "AccelFactor" "0.0010"

Option "TopEdge" "1700"

Option "RightEdge" "5300"

EndSection

 

with:

 

Section "InputDevice"

Identifier "Mouse1"

Driver "mouse"

Option "Protocol" "IMPS/2"

Option "Device" "/dev/mouse"

#Option "Device" "/dev/psaux"

Option "ZAxisMapping" "4 5"

EndSection

 

in my xorg.conf and now I can use the optical mouse and the touchpad but touchpad no longer has the tap features.

 

Is there a way to have both these (touchpad and optical mouse) fully functional?

Link to comment
Share on other sites

You mean like this:

 

Section "InputDevice"

Identifier "Mouse1"

Driver "mouse"

Option "Protocol" "IMPS/2"

Option "Device" "/dev/mouse"

Option "MinSpeed" "0.06"

Option "MaxSpeed" "0.12"

Option "BottomEdge" "4200"

Option "SHMConfig" "on"

Option "LeftEdge" "1700"

Option "FingerLow" "25"

Option "MaxTapTime" "180"

Option "MaxTapMove" "220"

Option "FingerHigh" "30"

Option "VertScrollDelta" "100"

Option "AccelFactor" "0.0010"

Option "TopEdge" "1700"

Option "RightEdge" "5300"

Option "ZAxisMapping" "4 5"

EndSection

 

 

 

 

EndSection

Link to comment
Share on other sites

OK, I replaced

 

Section "InputDevice"

Identifier "Mouse1"

Driver "mouse"

Option "Protocol" "IMPS/2"

Option "Device" "/dev/mouse"

#Option "Device" "/dev/psaux"

Option "ZAxisMapping" "4 5"

EndSection

 

with

 

Section "InputDevice"

Identifier "Mouse1"

Driver "mouse"

Option "Protocol" "IMPS/2"

Option "Device" "/dev/input/mice"

Option "MinSpeed" "0.06"

Option "MaxSpeed" "0.12"

Option "BottomEdge" "4200"

Option "SHMConfig" "on"

Option "LeftEdge" "1700"

Option "FingerLow" "25"

Option "MaxTapTime" "180"

Option "MaxTapMove" "220"

Option "FingerHigh" "30"

Option "VertScrollDelta" "100"

Option "AccelFactor" "0.0010"

Option "TopEdge" "1700"

Option "RightEdge" "5300"

Option "ZAxisMapping" "4 5"

EndSection

 

as you suggested and it didn't change anything.

Link to comment
Share on other sites

OK, I think I solved it.

 

I added the following "InputDevices" sections. Then the key to get both working was adding InputDevice "Mouse1" "SendCoreEvents" and InputDevice "SynapticsMouse1" "CorePointer" in the "ServerLayout" section. See the three separate sections below.

 

Section "InputDevice"

Identifier "SynapticsMouse1"

Driver "synaptics"

Option "Protocol" "auto-dev"

Option "Device" "/dev/input/mice"

Option "MinSpeed" "0.06"

Option "MaxSpeed" "0.12"

Option "BottomEdge" "4200"

Option "SHMConfig" "on"

Option "LeftEdge" "1700"

Option "FingerLow" "25"

Option "MaxTapTime" "180"

Option "MaxTapMove" "220"

Option "FingerHigh" "30"

Option "VertScrollDelta" "100"

Option "AccelFactor" "0.0010"

Option "TopEdge" "1700"

Option "RightEdge" "5300"

EndSection

 

Section "InputDevice"

Identifier "Mouse1"

Driver "mouse"

Option "Protocol" "IMPS/2"

Option "Device" "/dev/mouse"

#Option "Device" "/dev/psaux"

Option "ZAxisMapping" "4 5"

EndSection

 

Section "ServerLayout"

Identifier "layout1"

InputDevice "Keyboard1" "CoreKeyboard"

InputDevice "SynapticsMouse1" "CorePointer"

InputDevice "Mouse1" "SendCoreEvents"

Screen "screen1"

EndSection

Link to comment
Share on other sites

  • 3 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...