~elementary-os/elementaryos/default-settings-loki-plank

« back to all changes in this revision

Viewing changes to 99-libinput.conf

  • Committer: Cody Garver
  • Author(s): Fabian Thoma
  • Date: 2015-10-11 02:58:51 UTC
  • Revision ID: cody@elementary.io-20151011025851-xsjii8q0o1107ewx
Add Xorg config that makes tablet-like devices use the X input driver until the libinput implementation is ready for these devices

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Match on all types of devices but tablet devices and joysticks
 
2
 
 
3
Section "InputClass"
 
4
        Identifier "libinput pointer catchall"
 
5
        MatchIsPointer "on"
 
6
        MatchDevicePath "/dev/input/event*"
 
7
        Driver "libinput"
 
8
EndSection
 
9
 
 
10
Section "InputClass"
 
11
        Identifier "libinput keyboard catchall"
 
12
        MatchIsKeyboard "on"
 
13
        MatchDevicePath "/dev/input/event*"
 
14
        Driver "libinput"
 
15
EndSection
 
16
 
 
17
Section "InputClass"
 
18
        Identifier "libinput touchpad catchall"
 
19
        MatchIsTouchpad "on"
 
20
        MatchDevicePath "/dev/input/event*"
 
21
        Driver "libinput"
 
22
EndSection
 
23
 
 
24
Section "InputClass"
 
25
        Identifier "libinput touchscreen catchall"
 
26
        MatchIsTouchscreen "on"
 
27
        MatchDevicePath "/dev/input/event*"
 
28
        Driver "libinput"
 
29
EndSection
 
30