diff options
Diffstat (limited to '.config/yadm/root/etc/X11')
5 files changed, 41 insertions, 0 deletions
diff --git a/.config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf b/.config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf new file mode 100644 index 0000000..6c7cfad --- /dev/null +++ b/.config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf @@ -0,0 +1,6 @@ +Section "InputClass" + Identifier "default keyboard repeat speed" + MatchIsKeyboard "on" + Option "AutoRepeat" "250 40" +EndSection + diff --git a/.config/yadm/root/etc/X11/xorg.conf.d/50-mouse-acceleration.conf b/.config/yadm/root/etc/X11/xorg.conf.d/50-mouse-acceleration.conf new file mode 100644 index 0000000..199635d --- /dev/null +++ b/.config/yadm/root/etc/X11/xorg.conf.d/50-mouse-acceleration.conf @@ -0,0 +1,8 @@ +Section "InputClass" + Identifier "default mouse acceleration" + Driver "libinput" + MatchIsPointer "yes" + Option "AccelProfile" "flat" + Option "AccelSpeed" "0" +EndSection + diff --git a/.config/yadm/root/etc/X11/xorg.conf.d/72-wacom-options.conf b/.config/yadm/root/etc/X11/xorg.conf.d/72-wacom-options.conf new file mode 100644 index 0000000..81aaf60 --- /dev/null +++ b/.config/yadm/root/etc/X11/xorg.conf.d/72-wacom-options.conf @@ -0,0 +1,11 @@ +Section "InputClass" + Identifier "default wacom pen area + double click interval" + MatchDriver "wacom" + MatchProduct "Pen" + NoMatchProduct "eraser" + NoMatchProduct "cursor" + Option "Area" "0 0 15200 4275" + Option "MapToOutput" "1920x1080+0+0" + Option "TapTime" "100" +EndSection + diff --git a/.config/yadm/root/etc/X11/xorg.conf.d/90-libinput-wacom.conf b/.config/yadm/root/etc/X11/xorg.conf.d/90-libinput-wacom.conf new file mode 100644 index 0000000..26643b8 --- /dev/null +++ b/.config/yadm/root/etc/X11/xorg.conf.d/90-libinput-wacom.conf @@ -0,0 +1,9 @@ +Section "InputClass" + Identifier "force libinput as driver for wacom tablet touchpad" + MatchUSBID "056a:*" + MatchDevicePath "/dev/input/event*" + MatchIsTouchpad "true" + Driver "libinput" + Option "NaturalScrolling" "true" +EndSection + diff --git a/.config/yadm/root/etc/X11/xorg.conf.d/90-wacom-overrides.conf b/.config/yadm/root/etc/X11/xorg.conf.d/90-wacom-overrides.conf new file mode 100644 index 0000000..f2e2bbf --- /dev/null +++ b/.config/yadm/root/etc/X11/xorg.conf.d/90-wacom-overrides.conf @@ -0,0 +1,7 @@ +Section "InputClass" + Identifier "Wacom Tablet Overrides" + MatchDriver "wacom" + Option "AccelerationProfile" "5" + Option "ConstantDeceleration" "2" + Option "AdaptiveDeceleration" "3" +EndSection |