Hi, generix:
First, the contents of the original xorg.conf file are as follows:
Section “ServerLayout”
Identifier “layout”
Screen 0 “nvidia”
Inactive “intel”
EndSection
Section “Device”
Identifier “intel”
Driver “modesetting”
BusID “PCI:0@0:2:0”
Option “AccelMethod” “None”
EndSection
Section “Screen”
Identifier “intel”
Device “intel”
EndSection
Section “Device”
Identifier “nvidia”
Driver “nvidia”
BusID “PCI:2@0:0:0”
Option “ConstrainCursor” “off”
EndSection
Section “Screen”
Identifier “nvidia”
Device “nvidia”
Option “AllowEmptyInitialConfiguration” “on”
Option “IgnoreDisplayDevices” “CRT”
EndSection
After reading the document about X server, I made the following modifications:
Section “ServerLayout”
Identifier “layout”
Screen 0 “Screen0” 0 0
Inactive “intel”
InputDevice “Keyboard0” “CoreKeyboard”
InputDevice “Mouse0” “CorePointer”
Option “Xinerama” “0”
EndSection
Section “InputDevice”
# generated from default
Identifier “Keyboard0”
Driver “kbd”
EndSection
Section “InputDevice”
# generated from default
Identifier “Mouse0”
Driver “mouse”
Option “Protocol” “auto”
Option “Device” “/dev/psaux”
Option “Emulate3Buttons” “no”
Option “ZAxisMapping” “4 5”
EndSection
Section “Monitor”
Identifier “Monitor0”
VendorName “Unknown”
ModelName “DELL S2319HS”
Modeline “1280x720_30.00” 35.25 1280 1320 1440 1600 720 723 728 736 -hsync +vsync
Option “DPMS”
EndSection
Section “Device”
Identifier “intel”
Driver “modesetting”
Option “AccelMethod” “None”
BusID “PCI:0@0:2:0”
EndSection
Section “Device”
Identifier “nvidia”
Driver “nvidia”
Option “ConstrainCursor” “off”
BusID “PCI:2@0:0:0”
EndSection
Section “Device”
Identifier “Device0”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce GTX 1080”
EndSection
Section “Screen”
Identifier “intel”
Device “intel”
Monitor “Monitor0”
Option “UseEDID” “FALSE”
Option “ModeDebug” “true”
EndSection
Section “Screen”
Identifier “nvidia”
Device “nvidia”
Monitor “Monitor0”
Option “AllowEmptyInitialConfiguration” “on”
Option “IgnoreDisplayDevices” “CRT”
Option “UseEDID” “FALSE”
Option “ModeDebug” “true”
EndSection
Section “Screen”
Identifier “Screen0”
Device “Device0”
Monitor “Monitor0”
DefaultDepth 24
Option “Stereo” “0”
Option “nvidiaXineramaInfoOrder” “DFP-1”
Option “metamodes” “1280x720_30 +0+0”
Option “SLI” “Off”
Option “MultiGPU” “Off”
Option “BaseMosaic” “off”
SubSection “Display”
Depth 24
EndSubSection
EndSection
However, the above operation did not bring a surprise. After the reboot, xorg.conf was restored as original file.