Я использую драйвер xf86-input-synaptics
версии 1.9.1-1 (xorg-drivers) для Linux (Manjaro / Arch).Я хочу иметь возможность инициировать щелчок (событие кнопки 1), нажав , нажав одним пальцем, , в то время как У меня все еще есть палец, опирающийся на тачпад, который я использовал для перемещения курсора.
Мотивация заключается в том, что мне не нужно поднимать палец или отступить к физическому щелчку.Поэтому я не заинтересован в решении, которое использует физическую кнопку.Возможно переключение на другую библиотеку синтаксического анализа ввода, такую как libinput
или mtrack
.
Это моя текущая конфигурация
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
Section "InputClass"
Identifier "touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "synaptics"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "PalmDetect" "1"
Option "PalmMinWidth" "1"
Option "EmulateMidButtonTime" "0"
Option "VertTwoFingerScroll" "true"
Option "HorizTwoFingerScroll" "true"
Option "VertScrollDelta" "-15"
Option "HorizScrollDelta" "-15"
Option "Tapping" "true"
Option "TappingDrag" "false"
Option "CornerCoasting" "false"
Option "CoastingSpeed" "30"
Option "CoastingFriction" "30"
EndSection