diff options
| author | Syndamia <kamen@syndamia.com> | 2023-05-20 10:46:39 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2023-05-20 10:46:39 +0300 |
| commit | 9060dc3f1a25eaccf3aa16ec3d4abeea76b834a5 (patch) | |
| tree | 9abca16c702e403ebd697b405d9bf427ba43286f /.b/etc | |
| parent | fd6dccf138b22113aa194556fbb42b57f5fad38e (diff) | |
| download | dotfiles-9060dc3f1a25eaccf3aa16ec3d4abeea76b834a5.tar dotfiles-9060dc3f1a25eaccf3aa16ec3d4abeea76b834a5.tar.gz dotfiles-9060dc3f1a25eaccf3aa16ec3d4abeea76b834a5.zip | |
[.b/etc] Added libinput and display manager settings
Mostly natural scrolling for libinput and lightdm as display manager
Diffstat (limited to '.b/etc')
| -rw-r--r-- | .b/etc/X11/xorg.conf.d/40-libinput.conf | 8 | ||||
| -rw-r--r-- | .b/etc/conf.d/display-manager | 13 |
2 files changed, 21 insertions, 0 deletions
diff --git a/.b/etc/X11/xorg.conf.d/40-libinput.conf b/.b/etc/X11/xorg.conf.d/40-libinput.conf new file mode 100644 index 0000000..4857fd4 --- /dev/null +++ b/.b/etc/X11/xorg.conf.d/40-libinput.conf @@ -0,0 +1,8 @@ +Section "InputClass" + Identifier "libinput touchpad catchall" + MatchIsTouchpad "on" + MatchDevicePath "/dev/input/event*" + Option "NaturalScrolling" "true" + Option "Tapping" "on" + Driver "libinput" +EndSection diff --git a/.b/etc/conf.d/display-manager b/.b/etc/conf.d/display-manager new file mode 100644 index 0000000..d59abbd --- /dev/null +++ b/.b/etc/conf.d/display-manager @@ -0,0 +1,13 @@ +# We always try and start the DM on a static VT. The various DMs normally +# default to using VT7. If you wish to use the display-manager init +# script, then you should ensure that the VT checked is the same VT your +# DM wants to use. +# We do this check to ensure that you haven't accidentally configured +# something to run on the VT in your /etc/inittab file so that +# you don't get a dead keyboard. +CHECKVT=7 + +# What display manager do you use ? +# [ xdm | greetd | gdm | sddm | gpe | lightdm | entrance ] +# NOTE: If this is set in /etc/rc.conf, that setting will override this one. +DISPLAYMANAGER="lightdm" |
