我最近安装了 LXLE(带有 LXDE 桌面环境),但我一直遇到在键盘上打字时触发鼠标点击的问题。
基本上“鼠标点击”是超级敏感的,这意味着在写作过程中它会点击并选择另一个对话框(几乎不断)。
如何降低此问题的敏感度(Windows 上从未发生过)?
编辑
如果有帮助的话,我正在使用富士通 LIFEBOOK NH751
添加了xinput的输出; dmesg | grep pnp(设备部分):
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ PS/2 Generic Mouse id=14 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Fujitsu FUJ02E3 id=7 [slave keyboard (3)]
↳ Video Bus id=8 [slave keyboard (3)]
↳ Fujitsu FUJ02B1 id=9 [slave keyboard (3)]
↳ Video Bus id=10 [slave keyboard (3)]
↳ Power Button id=11 [slave keyboard (3)]
↳ FJ Camera id=12 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
答案1
这也是我遇到的问题,所以我使用这个将其关闭
# Turn off touch pad
# placed in ~/.xproflie also
exec xinput set-prop 12 "Device Enabled" 0
exec synclient touchpadoff=1
exec synclient VertEdgeScroll=0
exec synclient TapButton1=0
exec synclient TapButton2=0
exec synclient TapButton3=0
你可以坚持这是你的 bashrc 文件来打开和关闭它
alias TT='touchpad-toggle'
###
function touchpad-toggle {
# toggle synaptic touchpad on/off
# get current state
SYNSTATE=$(synclient -l | grep TouchpadOff | awk '{ print $3 }')
# change to other state
if [ $SYNSTATE = 0 ]; then
synclient touchpadoff=1
echo "touchpad OFF"
elif [ $SYNSTATE = 1 ]; then
synclient touchpadoff=0
echo "touchpad ON"
else
echo "Couldn't get touchpad status from synclient"
exit 1
fi
}
####
alias TT
你可以google synclient touch pad linux 关键字来了解更多