diff --git a/etc/X11/xorg.conf.d/20-intel.conf b/etc/X11/xorg.conf.d/20-intel.conf new file mode 100644 index 0000000..d1e4787 --- /dev/null +++ b/etc/X11/xorg.conf.d/20-intel.conf @@ -0,0 +1,6 @@ +Section "Device" + Identifier "Intel Graphics" + Driver "intel" + Option "Monitor-HDMI1" "Left" + Option "Monitor-HDMI3" "Right" +EndSection diff --git a/etc/X11/xorg.conf.d/20-nvidia.conf b/etc/X11/xorg.conf.d/20-nvidia.conf index 66cca9e..127dcc6 100644 --- a/etc/X11/xorg.conf.d/20-nvidia.conf +++ b/etc/X11/xorg.conf.d/20-nvidia.conf @@ -3,8 +3,8 @@ Section "Device" Driver "nvidia" VendorName "NVIDIA Corporation" Option "NoLogo" "true" - Option "Monitor-DVI-I-1" "LeftBenQ" - Option "Monitor-DVI-D-0" "RightBenQ" + Option "Monitor-DVI-I-1" "Left" + Option "Monitor-DVI-D-0" "Right" #Option "UseEDID" "false" #Option "ConnectedMonitor" "DFP" # ... diff --git a/etc/X11/xorg.conf.d/25-monitors.conf b/etc/X11/xorg.conf.d/25-monitors.conf index 7f0fd46..8f41d7d 100644 --- a/etc/X11/xorg.conf.d/25-monitors.conf +++ b/etc/X11/xorg.conf.d/25-monitors.conf @@ -1,13 +1,11 @@ Section "Monitor" - Identifier "LeftBenQ" + Identifier "Left" Option "Preferred Mode" "1920x1080_60" Option "Primary" "true" - #Option "Rotate" "Left" EndSection Section "Monitor" - Identifier "RightBenQ" - #Option "Rotate" "Left" + Identifier "Right" Option "Preferred Mode" "1920x1080_60" - Option "RightOf " "LeftBengQ" + Option "RightOf " "Left" EndSection