Thinkpad T480 터치패드: 수직 스크롤 활성화(DE 없음), 어떤 구성을 사용해야 합니까?

Thinkpad T480 터치패드: 수직 스크롤 활성화(DE 없음), 어떤 구성을 사용해야 합니까?

libinput을 사용하는지, 시냅틱을 사용하는지 둘 다 사용하기 때문에 잘 모르겠습니다.

Xorg 시냅스 구성

cat /etc/X11/xorg.conf.d/70-synaptics.conf 
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
    MatchDevicePath "/dev/input/event*"
        MatchIsTouchpad "on"
        # OWN SHIT
        Option "PalmDetect" "1"
        Option "PalmMinWidth" "3"
        Option "PalmMinZ" "50"
        Option "VertScrollDelta" "30"
        Option "HorizScrollDelta" "500"

# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
#       MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
        # OWN SHIT
        Option "PalmDetect" "1"
        Option "PalmMinWidth" "4"
        Option "PalmMinZ" "50"
        Option "VertScrollDelta" "30"
        Option "HorizScrollDelta" "500"
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

이 스크립트를 사용하여 스크롤 속도를 설정했지만:

#!bin/bash
# MOUSE SCRIPT
# xinput, permanent, run at startup
# touchpad scroll speed config

# >> TOUCHPAD
# Scroll speed
xinput set-prop "Synaptics TM3276-022" "Synaptics Scrolling Distance" 300, 100

# >> TRACKPOINT
# Scroll speed
xinput set-prop "TPPS/2 IBM TrackPoint" "libinput Scrolling Pixel Distance" 50

이 스크립트를 사용하여 트랙 포인트 속도를 설정했습니다.

#!bin/bash
# Trackpoint speed controll config
xinput --set-prop "TPPS/2 IBM TrackPoint" "libinput Accel Profile Enab
led" 1, 0

xinput --set-prop "TPPS/2 IBM TrackPoint" "libinput Accel Speed" 0.40

사용할 구성이나 시스템에서 사용하는 구성을 알고 계십니까?

답변1

libinputsynaptics충돌과 예상치 못한 동작이 발생할 수 있습니다 . 터치패드 설정이 일관되고 필요한 드라이버를 사용하도록 하려면 구성 단순화를 고려해야 합니다.

libinput 또는 synaptics 중 어떤 드라이버를 사용할지 결정하십시오. 일반적으로 libinput은 Linux의 입력 장치용 최신 드라이버이므로 사용하는 것이 좋습니다.

충돌하는 구성 제거: 선택한 드라이버에 따라 libinput 또는 synaptics 구성 파일을 제거합니다. 이렇게 하려면 해당 프로필 중 하나를 삭제하면 됩니다 /etc/X11/xorg.conf.d/.

sudo rm /etc/X11/xorg.conf.d/70-synaptics.conf

또는

sudo rm /etc/X11/xorg.conf.d/40-libinput.conf

선택한 드라이버를 사용하여 터치패드 설정 조정: 충돌하는 구성을 제거한 후 나머지 드라이버를 사용하여 터치패드 설정을 조정할 수 있습니다. 선택한 드라이버에 대한 단일 구성 파일을 통해 이 작업을 수행할 수 있습니다.

예를 들어 libinput을 사용하는 경우 /etc/X11/xorg.conf.d/에 libinput에 대한 구성 파일을 만듭니다. 40-libinput-custom.conf와 같은 이름을 지정하고 거기에 libinput 터치패드 설정을 추가하십시오.

시냅틱을 사용하기로 결정한 경우 필요한 설정을 사용하여 동일한 디렉터리에 시냅틱 구성 파일을 만듭니다.

변경사항을 적용하려면 다시 시작하세요.

관련 정보