Version control my Xorg config

This commit is contained in:
Victor Timofei 2021-06-21 19:28:03 +03:00
parent 83ebcf67eb
commit 237346d4de
Signed by: vtimofei
GPG Key ID: B790DCEBE281403A
3 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,12 @@
Section "Device"
Identifier "intel"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
Option "DRI" "3"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection

View File

@ -0,0 +1,21 @@
Section "ServerLayout"
Identifier "layout"
Screen 0 "AMD"
Inactive "intel"
EndSection
Section "Device"
Identifier "AMD"
Driver "amdgpu"
BusID "PCI:0:1:0"
Option "TearFree" "true"
Option "DRI" "3"
Option "AccelMethod" "glamor"
EndSection
Section "Screen"
Identifier "AMD"
Device "AMD"
GPUDevice "AMD"
Monitor "HDMI1"
EndSection

View File

@ -0,0 +1,25 @@
Section "Monitor"
# Monitor Identify
Identifier "eDP1"
# Setting Resolution and Modes
Option "PreferredMode" "1366x768"
Option "TargetRefresh" "60"
Option "LeftOf" "HDMI1"
Option "Position" "0 1008"
EndSection
Section "Monitor"
# Monitor Identify
Identifier "HDMI1"
# Setting Resolution and Modes
Option "PreferredMode" "3840x2160"
Option "TargetRefresh" "60"
Option "RightOf" "eDP1"
Option "Position" "2049 0"
EndSection