73du4rd0
(usa Void Linux)
Enviado em 05/09/2017 - 00:32h
No meu Ubuntu Gnome o diretório xorg.conf.d não existe. Será que tem alguma coisa que não está instalada na minha máquina ?
Não amigo , ele não vêm por padrão, pode criá-lo, vou explicar mais detalhadamente:
$ sudo mkdir /etc/X11/xorg.conf.d/
$ sudo cp /usr/share/X11/xorg.conf.d/*libinput.conf /etc/X11/xorg.conf.d/
Vou postar a configuração do meu arquivo, no caso ele é
/etc/X11/xorg.conf.d/40-libinput.conf :
# Match on all types of devices but tablet devices and joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "tapping" "on"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
A parte que ativa o "tap to click" é :
Option "tapping" "on"
Se ajudar, marque o tópico como resolvido.
Abraço!