Add screen blanking settings to bootstrap
This commit is contained in:
parent
5bffe42c9e
commit
0ca51b5433
4 changed files with 11 additions and 1 deletions
3
.config/yadm/files/xorg/etc/10-extensions.conf
Normal file
3
.config/yadm/files/xorg/etc/10-extensions.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
Section "Extensions"
|
||||
Option "DPMS" "false"
|
||||
EndSection
|
4
.config/yadm/files/xorg/etc/10-serverflags.conf
Normal file
4
.config/yadm/files/xorg/etc/10-serverflags.conf
Normal file
|
@ -0,0 +1,4 @@
|
|||
Section "ServerFlags"
|
||||
Option "BlankTime" "0"
|
||||
EndSection
|
||||
|
55
.config/yadm/files/xorg/usr/40-libinput.conf
Normal file
55
.config/yadm/files/xorg/usr/40-libinput.conf
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Match on all types of devices but joysticks
|
||||
#
|
||||
# If you want to configure your devices, do not copy this file.
|
||||
# Instead, use a config snippet that contains something like this:
|
||||
#
|
||||
# Section "InputClass"
|
||||
# Identifier "something or other"
|
||||
# MatchDriver "libinput"
|
||||
#
|
||||
# MatchIsTouchpad "on"
|
||||
# ... other Match directives ...
|
||||
# Option "someoption" "value"
|
||||
# EndSection
|
||||
#
|
||||
# This applies the option any libinput device also matched by the other
|
||||
# directives. See the xorg.conf(5) man page for more info on
|
||||
# matching devices.
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput pointer catchall"
|
||||
MatchIsPointer "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput keyboard catchall"
|
||||
MatchIsKeyboard "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput touchpad catchall"
|
||||
MatchIsTouchpad "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
Option "NaturalScrolling" "True"
|
||||
Option "Tapping" "on"
|
||||
Option "TappingButtonMap" "lrm"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput touchscreen catchall"
|
||||
MatchIsTouchscreen "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput tablet catchall"
|
||||
MatchIsTablet "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
Loading…
Add table
Add a link
Reference in a new issue