Como habilitar pulsación del touchpad
Ámbito
Fedora intenta ofrecer diversos entornos de escritorio a sus usuarios. Dado que Fedora intenta mantenerse lo más cerca posible del entorno de escritorio, seguimos las distintas opciones predeterminadas seleccionadas por los entornos de escritorio originales. Generalmente, esto implica desactivar el clic del panel táctil por defecto. Esta página wiki intenta recopilar los diferentes métodos que se pueden utilizar para habilitar el "tapping" en diversos entornos de escritorio.
Please note that this is only a resource to aid our users. For discussions on this setting, please talk to the relevant DE upstream. Fedora does not intend to make any changes to upstream defaults. |
Desktop configurations
This wiki page has more information about Input Device configuration. An example xorg.conf.d
snippet to enable tapping is given here.
GNOME
The "mouse and touchpad" utility can be used to enable tapping and set scrolling options in GNOME. See the Official GNOME documentation
KDE Plasma Workspaces
-
Enter KDE System Settings
-
Choose Hardware > Input Devices > Touchpad (If the "Touchpad" setting is not there, install kcm_touchpad first, then restart System Settings. It is installed by default.)
-
Select the Tapping tab
-
Check the "Tap to click" checkbox
-
Set some tapping actions under "Buttons" below, the default is to do nothing
Alternatively, the systemwide method described under Other window managers can also be used.
Xfce
-
Enter Xfce Settings
-
Select the Mouse and Touchpad settings
-
If necessary, select your Touchpad device
-
In the General section, enable "Tap touchpad to click"
Other window managers
Create a new file named /etc/X11/xorg.conf.d/99-synaptics-overrides.conf
.
Then, in your favourite text editor, modify this file as such:
Section "InputClass" Identifier "touchpad overrides" # This makes this snippet apply to any device with the "synaptics" driver # assigned MatchDriver "synaptics" #################################### ## The lines that you need to add ## # Enable left mouse button by tapping Option "TapButton1" "1" # Enable vertical scrolling Option "VertEdgeScroll" "1" # Enable right mouse button by tapping lower right corner Option "RBCornerButton" "3" #################################### EndSection
For more information on tweaking xorg.conf.d
files, please read the man page:
[…]$ man xorg.conf
Want to help? Learn how to contribute to Fedora Docs ›