Reduzindo a sensibilidade do mouse no Kubuntu 17.10

0

Eu fui forçado a atualizar para o Kubuntu 17.10 de 17.04. Isso tem o efeito colateral infeliz que meu "Logitech USB Laser Mouse" é super sensível novamente. No passado eu usei as instruções nas perguntas como essa para reduzi-la, mas infelizmente a opção "Device Accel Constant Deceleration" não está disponível mais:

➜  ~ xinput list-props 11
Device 'Logitech USB Laser Mouse':
        Device Enabled (145):   1
        Coordinate Transformation Matrix (147): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
        libinput Accel Speed (282):     0.000000
        libinput Accel Speed Default (283):     0.000000
        libinput Accel Profiles Available (284):        1, 1
        libinput Accel Profile Enabled (285):   1, 0
        libinput Accel Profile Enabled Default (286):   1, 0
        libinput Natural Scrolling Enabled (287):       0
        libinput Natural Scrolling Enabled Default (288):       0
        libinput Send Events Modes Available (267):     1, 0
        libinput Send Events Mode Enabled (268):        0, 0
        libinput Send Events Mode Enabled Default (269):        0, 0
        libinput Left Handed Enabled (289):     0
        libinput Left Handed Enabled Default (290):     0
        libinput Scroll Methods Available (291):        0, 0, 1
        libinput Scroll Method Enabled (292):   0, 0, 0
        libinput Scroll Method Enabled Default (293):   0, 0, 0
        libinput Button Scrolling Button (294): 2
        libinput Button Scrolling Button Default (295): 2
        libinput Middle Emulation Enabled (296):        0
        libinput Middle Emulation Enabled Default (297):        0
        Device Node (270):      "/dev/input/event5"
        Device Product ID (271):        1133, 49257
        libinput Drag Lock Buttons (298):       <no items>
        libinput Horizontal Scroll Enabled (299):       1

Então, agora estou procurando maneiras alternativas de reduzir a velocidade e a aceleração, pois usar o mouse agora é muito frustrante.

    
por Bob Jansen 29.01.2018 / 10:14

1 resposta

1

Este gráfico libinput sugere que você pode definir o libinput Accel Speed para -1.0 para obter uma desaceleração de 0,5.

xinput set-prop 11 'libinput Accel Speed' -1

Como alternativa, você pode tentar alterar a matriz de transformação para dimensionar os valores x e y.

xinput set-prop 11 'Coordinate Transformation Matrix' \
  0.5 0 0  0 0.5 0  0 0 1
    
por 29.01.2018 / 16:28