diff options
Diffstat (limited to '.config/xorg.conf')
-rw-r--r-- | .config/xorg.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/xorg.conf b/.config/xorg.conf new file mode 100644 index 0000000..f316b2e --- /dev/null +++ b/.config/xorg.conf @@ -0,0 +1,24 @@ +Section "InputClass" + Identifier "system-keyboard" + MatchIsKeyboard "true" + Option "XkbLayout" "us,ru" + Option "XkbOptions" "grp:lctrl_lwin_toggle,caps:ctrl_modifier" + Option "AutoRepeat" "200 25" +EndSection + +Section "InputClass" + Identifier "libinput pointer catchall" + MatchIsPointer "true" + Driver "libinput" + Option "AccelProfile" "flat" +EndSection + +Section "Monitor" + Identifier "eDP" + Option "Primary" "true" +EndSection + +Section "Monitor" + Identifier "HDMI-A-0" + Option "Above" "eDP" +EndSection |