我有一个华硕Zenbook UX550V,运行Ubuntu 17.04和Windows 10。
我有一个Elantech触摸屏,它在Windows 10中运行得非常好,它非常精确,甚至可以达到像素级。
然而,在Ubuntu Gnome中也不能这样说。它在各个方面都有效,除了敲击不那么敏感,我最大的问题是,当做小动作时,它只是不像在Windows 10中那样好。
例如,在Windows 10中,如果我做了非常小的圆圈,光标就会产生很小的圆圈。然而,在Ubuntu中,它可能在一个方向跳过几十个像素,然后跳过另一个像素,然后跳过另一个像素等等。这使得突出显示文本、在guis上进行分区、移动窗口和其他任务非常痛苦。任何帮助,使它执行像它在Windows 10将是很棒的。提前谢谢。
发布于 2017-11-06 06:09:31
希望我不会太晚。
你查过synclient了吗?
如果您还没有安装(sudo apt install synclient)并显示输出。
我的就像这样。
> synclient
Parameter settings:
LeftEdge = 129
RightEdge = 3105
TopEdge = 126
BottomEdge = 2211
FingerLow = 1
FingerHigh = 1
MaxTapTime = 180
MaxTapMove = 175
MaxDoubleTapTime = 180
SingleTapTimeout = 180
ClickTime = 100
EmulateMidButtonTime = 0
EmulateTwoFingerMinZ = 282
EmulateTwoFingerMinW = 7
VertScrollDelta = -79
HorizScrollDelta = -79
VertEdgeScroll = 1
HorizEdgeScroll = 0
CornerCoasting = 0
VertTwoFingerScroll = 1
HorizTwoFingerScroll = 0
MinSpeed = 1
MaxSpeed = 1.75
AccelFactor = 0.0501253
TouchpadOff = 0
LockedDrags = 0
LockedDragTimeout = 5000
RTCornerButton = 2
RBCornerButton = 3
LTCornerButton = 0
LBCornerButton = 0
TapButton1 = 1
TapButton2 = 3
TapButton3 = 2
ClickFinger1 = 1
ClickFinger2 = 3
ClickFinger3 = 0
CircularScrolling = 0
CircScrollDelta = 0.1
CircScrollTrigger = 0
CircularPad = 0
PalmDetect = 1
PalmMinWidth = 10
PalmMinZ = 200
CoastingSpeed = 35
CoastingFriction = 40
PressureMotionMinZ = 30
PressureMotionMaxZ = 160
PressureMotionMinFactor = 1
PressureMotionMaxFactor = 1
ResolutionDetect = 1
GrabEventDevice = 0
TapAndDragGesture = 1
AreaLeftEdge = 0
AreaRightEdge = 0
AreaTopEdge = 0
AreaBottomEdge = 0
HorizHysteresis = 19
VertHysteresis = 19
ClickPad = 1
RightButtonAreaLeft = 1617
RightButtonAreaRight = 0
RightButtonAreaTop = 1916
RightButtonAreaBottom = 0
MiddleButtonAreaLeft = 0
MiddleButtonAreaRight = 0
MiddleButtonAreaTop = 0
MiddleButtonAreaBottom = 0通常,通过编辑CoastingSpeed和CoastingFriction,您可以找到最佳位置。我使用以下方法将我的数据设置为35和40:
synclient CoastingSpeed=35
synclient CoastingFriction=40将其保存在文本文件中,并将其重命名为startup.sh,并在每次启动时使用启动应用程序运行它。
synclient还有很多其他很酷的选项,您应该像三个手指点击一样检查它,以识别为中间点击,帮助粘贴东西和打开新的选项卡。中间点击
https://askubuntu.com/questions/972927
复制相似问题