diff --git a/tasks/main.yaml b/tasks/main.yaml new file mode 100644 index 0000000..d5af4a5 --- /dev/null +++ b/tasks/main.yaml @@ -0,0 +1,6 @@ +--- + +- name: xorg touchpad config + template: + src: touchpad.conf.j2 + dest: /etc/X11/xorg.conf.d/30-touchpad.conf diff --git a/templates/touchpad.conf.j2 b/templates/touchpad.conf.j2 new file mode 100644 index 0000000..fc5f6e1 --- /dev/null +++ b/templates/touchpad.conf.j2 @@ -0,0 +1,7 @@ +Section "InputClass" + Identifier "touchpad" + Driver "libinput" + MatchIsTouchpad "on" + Option "Tapping" "on" + Option "TappingButtonMap" "lrm" +EndSection