Quantcast
Channel: Drup.org - Ubuntu
Viewing all articles
Browse latest Browse all 19

Preventing false mouse double-clicks under linux

$
0
0

Newer versions of Kubuntu are missing the advanced mouse options which let you debounce the mouse

sudo apt install xserver-xorg-input-evdev
sudo mkdir -p /etc/X11/xorg.conf.d

Then edit /etc/X11/xorg.conf.d/xorg.conf

and append:

Section "InputClass"
    Identifier "evdev-mouse"
    MatchIsPointer "yes"
    Driver "evdev"
EndSection

You may have to reboot at this point

xinput --list           # find the id of the mouse (e.g.

read more


Viewing all articles
Browse latest Browse all 19

Trending Articles