diff options
Diffstat (limited to 'X11/libinput')
-rw-r--r-- | X11/libinput/00-keyboard.conf | 9 | ||||
-rw-r--r-- | X11/libinput/09-custom-kbd.conf | 6 | ||||
-rw-r--r-- | X11/libinput/30-touchpad.conf | 7 |
3 files changed, 22 insertions, 0 deletions
diff --git a/X11/libinput/00-keyboard.conf b/X11/libinput/00-keyboard.conf new file mode 100644 index 0000000..4aa4ac7 --- /dev/null +++ b/X11/libinput/00-keyboard.conf | |||
@@ -0,0 +1,9 @@ | |||
1 | # Written by systemd-localed(8), read by systemd-localed and Xorg. It's | ||
2 | # probably wise not to edit this file manually. Use localectl(1) to | ||
3 | # instruct systemd-localed to update it. | ||
4 | Section "InputClass" | ||
5 | Identifier "system-keyboard" | ||
6 | MatchIsKeyboard "on" | ||
7 | Option "XkbLayout" "us" | ||
8 | Option "XkbOptions" "ctrl:nocaps" | ||
9 | EndSection | ||
diff --git a/X11/libinput/09-custom-kbd.conf b/X11/libinput/09-custom-kbd.conf new file mode 100644 index 0000000..f2123ff --- /dev/null +++ b/X11/libinput/09-custom-kbd.conf | |||
@@ -0,0 +1,6 @@ | |||
1 | Section "InputClass" | ||
2 | Identifier "keyboard defaults" | ||
3 | MatchIsKeyboard "on" | ||
4 | |||
5 | Option "XKbOptions" "ctrl:nocaps" | ||
6 | EndSection | ||
diff --git a/X11/libinput/30-touchpad.conf b/X11/libinput/30-touchpad.conf new file mode 100644 index 0000000..b5d4424 --- /dev/null +++ b/X11/libinput/30-touchpad.conf | |||
@@ -0,0 +1,7 @@ | |||
1 | # check ~/.local/share/xorg/Xorg.0.log for device name | ||
2 | Section "InputClass" | ||
3 | Identifier "touchpad" | ||
4 | Driver "libinput" | ||
5 | Option "Tapping" "on" | ||
6 | Option "NaturalScrolling" "on" | ||
7 | EndSection | ||