Advertisement
Guest User

Untitled

a guest
Apr 26th, 2022
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.24 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier     "Layout0"
  3.     Screen      0  "lg" 0 0
  4.     Screen      1  "laptop" RightOf "lg"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6.     InputDevice    "Mouse0" "CorePointer"
  7. #    Option         "Xinerama" "0"
  8. EndSection
  9.  
  10. Section "Files"
  11. EndSection
  12.  
  13. Section "InputDevice"
  14.  
  15.     # generated from default
  16.     Identifier     "Mouse0"
  17.     Driver         "mouse"
  18.     Option         "Protocol" "auto"
  19.     Option         "Device" "/dev/psaux"
  20.     Option         "Emulate3Buttons" "no"
  21.     Option         "ZAxisMapping" "4 5"
  22. EndSection
  23.  
  24. Section "InputDevice"
  25.  
  26.     # generated from default
  27.     Identifier     "Keyboard0"
  28.     Driver         "kbd"
  29. EndSection
  30.  
  31. Section "Monitor"
  32.  
  33.     # HorizSync source: edid, VertRefresh source: edid
  34.     Identifier     "hdmi"
  35.     VendorName     "Unknown"
  36.     ModelName      "LG Electronics LG ULTRAWIDE"
  37.     HorizSync       30.0 - 90.0
  38.     VertRefresh     56.0 - 75.0
  39.     Option         "DPMS"
  40. EndSection
  41.  
  42. Section "Monitor"
  43.     Identifier  "asus"
  44.     Option  "Disable" "false"
  45. EndSection
  46.  
  47. Section "Device"
  48.     Identifier  "intel"
  49.     Driver  "intel"
  50.     BusID   "PCI:00:02:0"
  51.     Option  "Monitor-eDP0" "asus"
  52. EndSection
  53.  
  54. Section "Device"
  55.     Identifier     "nvidia"
  56.     Driver         "nvidia"
  57.     VendorName     "NVIDIA Corporation"
  58.     BoardName      "NVIDIA GeForce RTX 2070"
  59.     BusID          "PCI:01:00:0"
  60.     Option  "Monitor-HDMI0" "hdmi"
  61. EndSection
  62.  
  63. Section "Screen"
  64.     Identifier     "laptop"
  65.     Device         "intel"
  66.     Monitor        "asus"
  67. EndSection
  68.  
  69.  
  70. Section "Screen"
  71. # Removed Option "metamodes" "nvidia-auto-select +0+0 {ForceCompositionPipeline=On}"
  72. # Removed Option "metamodes" "2560x1080_60 +0+0 {ForceCompositionPipeline=On}"
  73. # Removed Option "metamodes" "2560x1080_50 +0+0 {ForceCompositionPipeline=On}"
  74.     Identifier     "lg"
  75.     Device         "nvidia"
  76.     Monitor        "hdmi"
  77.     DefaultDepth    24
  78.     Option         "Stereo" "0"
  79.     Option         "nvidiaXineramaInfoOrder" "DFP-2"
  80.     Option         "metamodes" "2560x1080_60 +0+0"
  81.     Option         "SLI" "Off"
  82.     Option         "MultiGPU" "Off"
  83.     Option         "BaseMosaic" "off"
  84.     SubSection     "Display"
  85.         Depth       24
  86.     EndSubSection
  87. EndSection
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement