This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.

Please visit our production wiki at https://wiki.gentoo.org

Libinput

From Gentoo Wiki (test)
Jump to:navigation Jump to:search

libinput is an input device driver for Wayland compositors and X.org window system. It is Gentoo Linux' default input device driver. It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code compositors need to provide the common set of functionality that users expect.[1]

Installation

Kernel

Support for Event interface (CONFIG_INPUT_EVDEV) needs to be enabled in the kernel:

KERNEL Enabling Event interface in the kernel
Device Drivers --->
  Input device support --->
  <*>  Event interface

USE flags

Some packages are aware of the input_devices_libinput USE flag. It should already be set as the default input device driver by the make.defaults file.

To check if it is presently activated, run:

user $portageq envvar INPUT_DEVICES

If not, add it to the INPUT_DEVICES variable:

FILE /etc/portage/make.confSet INPUT_DEVICES
INPUT_DEVICES="libinput"

After setting the INPUT_DEVICES variable remember to update the system using the following command so the changes take effect:

root #emerge --ask --changed-use --deep @world


After the update the packages dev-libs/libinput and x11-drivers/xf86-input-libinput should be installed.

Additional software

In order to enable actions gestures on the touchpad using the libinput driver, follow the install notes from the official project page on GitHub.

Remember to install the required dependencies:

root #emerge --ask x11-misc/xdotool x11-misc/wmctrl

Configuration

Xorg

By default, when libinput is the only available input driver for Xorg, no additional configuration is needed. Simply (re)start the graphical environment for the changes to take effect.

If multiple input drivers are available on the system (x11-drivers/xf86-input-evdev and x11-drivers/xf86-input-synaptics for example), then additional configuration is required.

Selecting libinput

When multiple drivers are available on the system, Xorg must be instructed to use libinput before trying to use other input drivers. This can be simply performed by symlinking the 40-libinput.conf file into the /etc/X11/xorg.conf.d/ directory:

root #ln -s /usr/share/X11/xorg.conf.d/40-libinput.conf /etc/X11/xorg.conf.d/

If the 40-libinput.conf will be edited, it is better to copy the file to the configuration directory:

root #cp /usr/share/X11/xorg.conf.d/40-libinput.conf /etc/X11/xorg.conf.d/

Xorg gives priority to the files in the /etc/X11/xorg.conf.d/ directory.

(Re)start the graphical environment for the changes to take effect.

Touchpad tap-to-click

Many users will desire the native 'tap-to-click" behavior for laptops with modern touchpads. Add the following Option lines to Xorg's libinput configuration section:

FILE /etc/X11/xorg.conf.d/40-libinput.confAdding tap-to-click
Section "InputClass"
     Identifier "libinput touchpad catchall"
     MatchIsTouchpad "on"
     MatchDevicePath "/dev/input/event*"
     Option "Tapping" "True"
     Option "TappingDrag" "True"
     Driver "libinput"
EndSection

Invocation

To list the available input devices:

root #libinput list-devices

For detailed information see the libinput-list-devices(1) man page.

root #libinput debug-events

Troubleshooting

Removing another input driver from INPUT_DEVICES does not prevent Xorg from loading it

This issue can occur in a variety of situations, but it is most prominent when migrating from evdev to libinput.

Be sure the x11-drivers/xf86-input-evdev package is no longer installed on the system. If /usr/share/X11/xorg.conf.d/10-evdev.conf exists then Xorg will still reference it.

Verify the evdev driver is no longer referenced anywhere by Portage (check make.conf and package.use), then depclean the system:

root #emerge --ask --depclean

See also

External resources

References