Advertisement
Guest User

Untitled

a guest
Jun 21st, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Persistent configuration
  2.  
  3. libinput does not store configuration options, it is up to the caller to manage these. Under Wayland configuration is restored by the desktop environment. Under X xf86-input-libinput reads the xorg config files and applies the options [4]. To make changes persistent under X create a file like this:
  4.  
  5. /etc/X11/xorg.conf.d/99-libinput-custom-config.conf
  6.  
  7. Section "InputClass"
  8.   Identifier "<something to identify this snippet>"
  9.   MatchDriver "libinput"
  10.   MatchProduct "<substring of the device name>"
  11.   Option "AccelSpeed" "<e.g. 0.3>"
  12. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement