小智 6
通常,Elantech 触摸板在 Ubuntu 12.04 中开箱即用(对于 Ubuntu 12.04 LTS 上的内核 3.3-rc5,Elantech 驱动程序运行良好)。
在 3.2 中所做的更改:
您还可以使用 synclient 设置触摸板。这是来自 Aurélien Jacobs 和 Marcus Möller 的示例脚本。您可以~/bin/touchpad_settings使用 gnome-session-properties 将其另存为并添加为 Unity 启动脚本:
# higher sensitivity
synclient FingerLow=9 FingerHigh=12
# faster speed and acceleration
synclient MinSpeed=1.5 MaxSpeed=3.5 AccelFactor=0.1
# 2 fingers scroll (can be also enabled in System Settings)
synclient VertTwoFingerScroll=1 HorizTwoFingerScroll=1
# faster coasting
synclient CoastingSpeed=10
# enable tap to click (2 fingers for middle click, 3 fingers for right click)
synclient TapButton1=1 TapButton2=3 TapButton3=2
# continue dragging movement when reaching the edge of the touchpad
synclient EdgeMotionMinZ=30 EdgeMotionMaxZ=40 EdgeMotionMinSpeed=100 EdgeMotionMaxSpeed=400
Run Code Online (Sandbox Code Playgroud)