Advertisement
Guest User

Untitled

a guest
Nov 20th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.85 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen         "AsusScreen" 0 0
  4.     Screen         "DellScreen" LeftOf "AsusScreen"
  5.     Option         "Xinerama" "1"
  6.     InputDevice    "Mouse0" "CorePointer"
  7.     InputDevice    "Keyboard0" "CoreKeyboard"
  8. EndSection
  9.  
  10. Section "Files"
  11.     ModulePath   "/usr/lib/xorg/modules"
  12.     FontPath     "/usr/share/fonts/misc"
  13.     FontPath     "/usr/share/fonts/TTF"
  14.     FontPath     "/usr/share/fonts/OTF"
  15.     FontPath     "/usr/share/fonts/Type1"
  16.     FontPath     "/usr/share/fonts/100dpi"
  17.     FontPath     "/usr/share/fonts/75dpi"
  18. EndSection
  19.  
  20. Section "Module"
  21.     Load  "glx"
  22. EndSection
  23.  
  24. Section "InputDevice"
  25.     Identifier  "Keyboard0"
  26.     Driver      "kbd"
  27. EndSection
  28.  
  29. Section "InputDevice"
  30.     Identifier  "Mouse0"
  31.     Driver      "mouse"
  32.     Option      "Protocol" "auto"
  33.     Option      "Device" "/dev/input/mice"
  34.     Option      "ZAxisMapping" "4 5 6 7"
  35. EndSection
  36.  
  37. Section "Monitor"
  38.     Identifier   "Asus"
  39.     VendorName   "Monitor Vendor"
  40.     ModelName    "Monitor Model"
  41.     Option       "RightOf" "Dell"
  42.     Option       "DPMS"
  43. EndSection
  44.  
  45. Section "Monitor"
  46.     Identifier   "Dell"
  47.     VendorName   "Monitor Vendor"
  48.     ModelName    "Monitor Model"
  49.     Option       "Primary" "true"
  50.     Option       "LeftOf" "Asus"
  51.     Option       "Rotate" "left"
  52.     Option       "DPMS"
  53. EndSection
  54.  
  55. Section "Device"
  56.     Identifier  "NvidiaCard"
  57.     Driver      "nvidia"
  58.     BusID       "PCI:1:0:0"
  59. EndSection
  60.  
  61. Section "Device"
  62.     Identifier  "IntelCard"
  63.     Driver      "modesetting"
  64.     BusID       "PCI:0:2:0"
  65. EndSection
  66.  
  67. Section "Screen"
  68.     Identifier "AsusScreen"
  69.     Device     "NvidiaCard"
  70.     Monitor    "Asus"
  71.     DefaultDepth    24
  72.     SubSection     "Display"
  73.         Depth       24
  74.     EndSubSection
  75. EndSection
  76.  
  77. Section "Screen"
  78.     Identifier "DellScreen"
  79.     Device     "IntelCard"
  80.     Monitor    "Dell"
  81.     DefaultDepth    24
  82.     SubSection     "Display"
  83.         Depth       24
  84.     EndSubSection
  85. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement