트랙패드에서 기본적으로 클릭 기능을 활성화하려고 합니다. 장치 이름은 "bcm5974"입니다. xinput --set-prop "bcm5974" "libinput Tapping Enabled" "1"
매력적으로 작동하지만 이와 같이 변경된 속성은 재부팅 후에도 지속되지 않습니다.
/usr/share/X11/xorg.conf.d/40-libinput.conf
여기의 다른 답변을 바탕으로 먼저 실행 xinput list
하고 장치가 포인터로 나타나서 관련 부분이 다음과 같이 수정 40-libinput.conf
되었습니다.
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection
이게 안되서 확인해 보니 /var/log/Xorg.0.log
실제로는 터치패드로 인식이 되는 것 같았습니다. 대신 TouchpadInputClass에 40-libinput.conf
추가했습니다 .Option "Tapping" "on"
재부팅한 후에도 클릭 투 클릭이 여전히 활성화되지 않았지만 Xorg.0.log
설정 중인 옵션이 표시되었으며 장치가 제거된 후 읽히지 않은 채 읽혀진 것으로 보입니다 40-libinput.conf
.
[ 73.350] (II) config/udev: Adding input device bcm5974 (/dev/input/event6)
[ 73.350] (**) bcm5974: Applying InputClass "libinput touchpad catchall"
[ 73.350] (II) Using input driver 'libinput' for 'bcm5974'
[ 73.350] (**) bcm5974: always reports core events
[ 73.350] (**) Option "Device" "/dev/input/event6"
[ 73.350] (**) Option "_source" "server/udev"
[ 73.357] (II) event6 - bcm5974: is tagged by udev as: Touchpad
[ 73.358] (II) event6 - bcm5974: device is a touchpad
[ 73.358] (II) event6 - bcm5974: device removed
[ 73.394] (**) Option "Tapping" "on"
[ 73.394] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/usb3/3-6/3-6:1.2/input/input6/event6"
[ 73.394] (II) XINPUT: Adding extended input device "bcm5974" (type: TOUCHPAD, id 11)
[ 73.395] (**) Option "AccelerationScheme" "none"
[ 73.395] (**) bcm5974: (accel) selected scheme none/0
[ 73.395] (**) bcm5974: (accel) acceleration factor: 2.000
[ 73.395] (**) bcm5974: (accel) acceleration threshold: 4
[ 73.402] (II) event6 - bcm5974: is tagged by udev as: Touchpad
[ 73.403] (II) event6 - bcm5974: device is a touchpad
[ 73.404] (II) config/udev: Adding input device bcm5974 (/dev/input/mouse0)
[ 73.404] (II) No input driver specified, ignoring this device.
[ 73.404] (II) This device may have been added with another device file.
나는 여기서 지식 수준을 넘어섰습니다. udev는 내 장치에 자체 구성을 적용합니까? 그렇다면 구성 파일은 어디에 있으며 어떻게 수정할 수 있습니까? 아니면 다른 것을 놓치고 있습니까?
저는 2008년 말 Macbook에서 Lubuntu 20.04.5를 실행하고 있으며 트랙패드는 노트북에 원래 내장된 트랙패드입니다. 어떤 방법으로든 도와주셔서 감사합니다!