在X-window中关闭touchpad的方法

转自: http://www.sudu.cn/info/html/edu/linux/20070102/287908.html

自己用的笔记本老是在打字的时候,大拇指不小心碰到触摸板,导致光标乱跳很是烦人。Ubuntu论坛上看到一个方法禁用touchpad,尝试了一下不错。
修改 /etc/X11/xorg.conf,把

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver    "synaptics"
Option    "SendCoreEvents" "true"
Option    "Device"    "/dev/psaux"
Option    "Protocol"    "auto-dev"
Option    "HorizEdgeScroll" "0"
EndSection

加一行

Option    "SHMConfig"        "on"

重新启动xorg,然后运行

synclient touchpadoff=0
synclient touchpadoff=1

就能够打开/关闭触摸板了。

This entry was posted in X.org and tagged . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *