You are not logged in.
Pages: 1
As of right now, I have my synaptics touchpad to right click when I tap the bottom right corner. I'd prefer it, however, if I could get the same thing by just tapping with two fingers anywhere. Is it possible?
Offline
Option "TapButton2" "3"
Last edited by elliott (2007-12-26 08:08:48)
Offline
man synaptics and the synaptics website are worth looking at.
Offline
Tried that and looked there. The tapbutton option just makes it work in a corner.
Offline
Then you have done something wrong, I have 3 laptops with touchpads, all custom configured with 2 finger right click and 3 finger middle click.
Section "InputDevice"
Driver "synaptics"
Identifier "TouchPad"
Option "SendCoreEvents"
Option "Protocol" "auto-dev"
Option "SHMConfig" "on"
Option "RTCornerButton" "0"
Option "RBCornerButton" "0"
Option "LTCornerButton" "0"
Option "LBCornerButton" "0"
Option "RightEdge" "5570"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "VertTwoFingerScroll" "1"
EndSection
Last edited by elliott (2007-12-26 19:28:39)
Offline
Hmm, well here's mine. Is it because of the corner buttons?
Section "InputDevice"
Driver "synaptics"
Identifier "TouchPad"
Option "SendCoreEvents"
Option "Protocol" "auto-dev"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "110"
Option "MaxTapMove" "220"
Option "MinSpeed" "0.60"
Option "MaxSpeed" "0.65"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "LockedDrags" "on"
Option "LockedDragTimeout" "110"
Option "SHMConfig" "on"
EndSection
Offline
You could try disabling them like I did, they annoyed me when I was scrolling so they had to go.
Offline
I'll give that a try. How did you find the dimensions for the right edge?
Offline
Trial and error, my scroll section was way too big, so I kept increasing that number until it was where I wanted it. You can run this to find out what the current settings are:
synclient -l
With something like:
synclient RightEdge=5570
You can change it without restarting X, then when you have it where you want it, you can make the permanent change to xorg.conf.
Last edited by elliott (2007-12-27 08:50:13)
Offline
Weird. Now I have this but nothing happens when I tap with two fingers.
Section "InputDevice"
Driver "synaptics"
Identifier "TouchPad"
Option "SendCoreEvents"
Option "Protocol" "auto-dev"
Option "SHMConfig" "on"
Option "RTCornerButton" "0"
Option "RBCornerButton" "0"
Option "LTCornerButton" "0"
Option "LBCornerButton" "0"
Option "RightEdge" "920"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "VertTwoFingerScroll" "1"
Option "MinSpeed" "0.60"
Option "MaxSpeed" "0.65"
EndSection
Offline
Space your fingers apart, if you tap with them both close together, it won't work.
Offline
That didn't seem to help at all. It's a synaptic touchpad on yours, right?
Offline
I am fairly certain it is. I believe my C600 has an ALPS pad, and it works exactly the same.
cat /proc/bus/input/devices
I: Bus=0011 Vendor=0002 Product=0007 Version=12b1
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio4/input0
S: Sysfs=/devices/platform/i8042/serio4/input/input7
U: Uniq=
H: Handlers=mouse1 event7 ts1
B: EV=b
B: KEY=6420 0 7000f 0 0 0 0 0 0 0 0
B: ABS=11000003
Last edited by elliott (2007-12-27 23:19:00)
Offline
It's telling me I have any alps, but everything else works fine, even the driver. Should I just do it the other way?
Offline
Not that this is urgent, but I'd still like it.
cat /proc/bus/input/devices
I: Bus=0011 Vendor=0002 Product=0008 Version=7321
N: Name="AlpsPS/2 ALPS GlidePoint"
P: Phys=isa0060/serio4/input0
S: Sysfs=/devices/platform/i8042/serio4/input/input6
U: Uniq=
H: Handlers=mouse3 event6 ts3
B: EV=f
B: KEY=420 70000 0 0 0 0
B: REL=3
B: ABS=1000003
xorg.conf
Section "InputDevice"
Identifier "TouchPad"
Driver "synaptics"
Option "SendCoreEvents"
Option "Protocol" "auto-dev"
Option "LeftEdge" "100"
Option "RightEdge" "840"
Option "TopEdge" "130"
Option "BottomEdge" "640"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "MaxDoubleTapTime" "180"
Option "VertScrollDelta" "20"
Option "HorizScrollDelta" "50"
Option "MinSpeed" "0.79"
Option "MaxSpeed" "0.88"
Option "AccelFactor" "0.0015"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "SHMConfig" "on"
EndSection
This make the right click the bottom right corner and middle click top right. Still would prefer to have it be two and three fingers.
Offline
To make sure your touchpad support more than one finger, run
synclient -m 100
Play with your toucpad then and you'll see many columns of information. The one you are looking for is "f" which tells you how many fingers are pressing the touchpad. Maybe you are unfortunate as I am and multifinger won't be supported by your touchpad
Damnshock
My blog: blog.marcdeop.com
Jabber ID: damnshock@jabber.org
Offline
Is that hardware wise or more kernel wise? AKA, can it be changed?
Offline
can it be changed?
Nope: it's just the way it is
My blog: blog.marcdeop.com
Jabber ID: damnshock@jabber.org
Offline
Damn. I guess corners isn't that bad.
Offline
Pages: 1