Install touchpad configuration

This commit is contained in:
Jake Howard 2018-03-04 12:31:51 +00:00
parent 9347dcfa1f
commit 10f2511fd6
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,10 @@
Section "InputClass"
Identifier "libinput touchpad catchall"
Driver "libinput"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "ClickMethod" "clickfinger"
Option "NaturalScrolling" "false"
Option "AccelProfile" "flat"
Option "DisableWhileTyping" "true"
EndSection

View File

@ -62,6 +62,13 @@ class config {
source => 'puppet:///modules/config/rofi.conf'
}
file { 'Touchpad configuration':
ensure => file,
mode => '0644',
path => '/usr/share/X11/xorg.conf.d/30-touchpad.conf',
source => 'puppet:///modules/config/touchpad.conf'
}
service { 'lightdm':
enable => false
}