Advertisement
Guest User

xorg.conf.X

a guest
Dec 29th, 2019
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen      0  "Screen0" 0 0
  4.     Screen      1  "Screen1" RightOf "Screen0"
  5.     InputDevice    "Mouse0" "CorePointer"
  6.     InputDevice    "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Files"
  10.     ModulePath   "/usr/lib/nvidia/xorg"
  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   "Monitor0"
  39.     VendorName   "Monitor Vendor"
  40.     ModelName    "Monitor Model"
  41. EndSection
  42.  
  43. Section "Monitor"
  44.     Identifier   "Monitor1"
  45.     VendorName   "Monitor Vendor"
  46.     ModelName    "Monitor Model"
  47. EndSection
  48.  
  49. Section "Device"
  50.         ### Available Driver options are:-
  51.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  52.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  53.         ### <percent>: "<f>%"
  54.         ### [arg]: arg optional
  55.         #Option     "Accel"                 # [<bool>]
  56.         #Option     "AccelMethod"           # <str>
  57.         #Option     "Backlight"             # <str>
  58.         #Option     "CustomEDID"            # <str>
  59.         #Option     "DRI"                   # <str>
  60.         #Option     "Present"               # [<bool>]
  61.         #Option     "ColorKey"              # <i>
  62.         #Option     "VideoKey"              # <i>
  63.         #Option     "Tiling"                # [<bool>]
  64.         #Option     "LinearFramebuffer"     # [<bool>]
  65.         #Option     "HWRotation"            # [<bool>]
  66.         #Option     "VSync"                 # [<bool>]
  67.         #Option     "PageFlip"              # [<bool>]
  68.         #Option     "SwapbuffersWait"       # [<bool>]
  69.         #Option     "TripleBuffer"          # [<bool>]
  70.         #Option     "XvPreferOverlay"       # [<bool>]
  71.         #Option     "HotPlug"               # [<bool>]
  72.         #Option     "ReprobeOutputs"        # [<bool>]
  73.         #Option     "XvMC"                  # [<bool>]
  74.         #Option     "ZaphodHeads"           # <str>
  75.         #Option     "VirtualHeads"          # <i>
  76.         #Option     "TearFree"              # [<bool>]
  77.         #Option     "PerCrtcPixmaps"        # [<bool>]
  78.         #Option     "FallbackDebug"         # [<bool>]
  79.         #Option     "DebugFlushBatches"     # [<bool>]
  80.         #Option     "DebugFlushCaches"      # [<bool>]
  81.         #Option     "DebugWait"             # [<bool>]
  82.         #Option     "BufferCache"           # [<bool>]
  83.     Identifier  "Card0"
  84.     Driver      "intel"
  85.     BusID       "PCI:0:2:0"
  86. EndSection
  87.  
  88. Section "Device"
  89.     Identifier  "Card1"
  90.     Driver      "nvidia"
  91.     BusID       "PCI:1:0:0"
  92. EndSection
  93.  
  94. Section "Screen"
  95.     Identifier "Screen0"
  96.     Device     "Card0"
  97.     Monitor    "Monitor0"
  98.     SubSection "Display"
  99.         Viewport   0 0
  100.         Depth     1
  101.     EndSubSection
  102.     SubSection "Display"
  103.         Viewport   0 0
  104.         Depth     4
  105.     EndSubSection
  106.     SubSection "Display"
  107.         Viewport   0 0
  108.         Depth     8
  109.     EndSubSection
  110.     SubSection "Display"
  111.         Viewport   0 0
  112.         Depth     15
  113.     EndSubSection
  114.     SubSection "Display"
  115.         Viewport   0 0
  116.         Depth     16
  117.     EndSubSection
  118.     SubSection "Display"
  119.         Viewport   0 0
  120.         Depth     24
  121.     EndSubSection
  122. EndSection
  123.  
  124. Section "Screen"
  125.     Identifier "Screen1"
  126.     Device     "Card1"
  127.     Monitor    "Monitor1"
  128.     SubSection "Display"
  129.         Viewport   0 0
  130.         Depth     1
  131.     EndSubSection
  132.     SubSection "Display"
  133.         Viewport   0 0
  134.         Depth     4
  135.     EndSubSection
  136.     SubSection "Display"
  137.         Viewport   0 0
  138.         Depth     8
  139.     EndSubSection
  140.     SubSection "Display"
  141.         Viewport   0 0
  142.         Depth     15
  143.     EndSubSection
  144.     SubSection "Display"
  145.         Viewport   0 0
  146.         Depth     16
  147.     EndSubSection
  148.     SubSection "Display"
  149.         Viewport   0 0
  150.         Depth     24
  151.     EndSubSection
  152. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement