commit 37fa8262cb971190bb0136bebcecec62e14a49ef parent 9bce3806adc880217d394c6c6f83d35be55659ab Author: klewer-martin <martin.cachari@gmail.com> Date: Wed, 29 Sep 2021 22:15:06 -0300 Added xorg 'config files' which contains mouse & keyboard configs Diffstat:
A | etc/X11/xorg.conf.d/00-keyboard.conf | | | 5 | +++++ |
A | etc/X11/xorg.conf.d/50-mouse-acceleration.conf | | | 7 | +++++++ |
2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/etc/X11/xorg.conf.d/00-keyboard.conf b/etc/X11/xorg.conf.d/00-keyboard.conf @@ -0,0 +1,5 @@ +Section "InputClass" + Identifier "system-keyboard" + MatchIsKeyboard "yes" + Option "XkbOptions" "caps:swapescape,altwin:swap_lalt_lwin,altwin:swap_alt_win" +EndSection diff --git a/etc/X11/xorg.conf.d/50-mouse-acceleration.conf b/etc/X11/xorg.conf.d/50-mouse-acceleration.conf @@ -0,0 +1,7 @@ +Section "InputClass" + Identifier "My Mouse" + Driver "libinput" + MatchIsPointer "yes" + Option "AccelProfile" "flat" + Option "AccelSpeed" "0" +EndSection