From 74fa178519041d97c77b4eb45608f31c042925be Mon Sep 17 00:00:00 2001 From: Jarkko Toivanen Date: Wed, 20 Mar 2024 16:27:56 +0200 Subject: [PATCH] X11 conf --- etc/X11/xorg.conf.d/20-amdgpu.conf | 7 +++++++ etc/X11/xorg.conf.d/50-mouse-acceleration.conf | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 etc/X11/xorg.conf.d/20-amdgpu.conf create mode 100644 etc/X11/xorg.conf.d/50-mouse-acceleration.conf diff --git a/etc/X11/xorg.conf.d/20-amdgpu.conf b/etc/X11/xorg.conf.d/20-amdgpu.conf new file mode 100644 index 0000000..930280e --- /dev/null +++ b/etc/X11/xorg.conf.d/20-amdgpu.conf @@ -0,0 +1,7 @@ +Section "OutputClass" + Identifier "AMD" + MatchDriver "amdgpu" + Driver "amdgpu" + Option "VariableRefresh" "true" + Option "AsyncFlipSecondaries" "true" +EndSection diff --git a/etc/X11/xorg.conf.d/50-mouse-acceleration.conf b/etc/X11/xorg.conf.d/50-mouse-acceleration.conf new file mode 100644 index 0000000..e00935b --- /dev/null +++ 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" ".5" +EndSection