Install touchpad configuration
This commit is contained in:
parent
9347dcfa1f
commit
10f2511fd6
2 changed files with 17 additions and 0 deletions
10
modules/config/files/touchpad.conf
Normal file
10
modules/config/files/touchpad.conf
Normal 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
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue