内容 |
新买的笔记本,在win下面可以拖拽窗口,linux下面不行。一开始不知道该用什么关键词查找,浪费了不少时间。这里记录一下。 执行 synclient ClickPad=1 即可 让这个能够开机自动生效的话,创建 /etc/X11/xorg.conf.d/50-synaptics.conf 文件 内容是 Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Option "ClickPad" "1" EndSection 就搞定了。 |