Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
98
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.     InputDevice    "Mouse0" "CorePointer"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9.     ModulePath   "/usr/lib/xorg/modules"
  10.     FontPath     "/usr/share/fonts/X11/misc"
  11. #   FontPath     "/usr/share/fonts/X11/cyrillic"
  12.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  13.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  14.     FontPath     "/usr/share/fonts/X11/Type1"
  15.     FontPath     "/usr/share/fonts/X11/100dpi"
  16.     FontPath     "/usr/share/fonts/X11/75dpi"
  17. #   FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  18.     FontPath     "built-ins"
  19. EndSection
  20.  
  21. Section "Module"
  22.     Load  "record"
  23.     Load  "extmod"
  24.     Load  "glx"
  25.     Load  "dri"
  26.     Load  "dbe"
  27.     Load  "dri2"
  28. EndSection
  29.  
  30. Section "InputDevice"
  31.     Identifier  "Keyboard0"
  32.     Driver      "kbd"
  33. EndSection
  34.  
  35. Section "InputDevice"
  36.     Identifier  "Mouse0"
  37.     Driver      "mouse"
  38.     Option      "Protocol" "auto"
  39.     Option      "Device" "/dev/input/mice"
  40.     Option      "ZAxisMapping" "4 5 6 7"
  41. EndSection
  42.  
  43. Section "Monitor"
  44.     Identifier   "Monitor0"
  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.         ### [arg]: arg optional
  54.         #Option     "AccelMethod"           # [<str>]
  55.         #Option     "DRI"                   # [<bool>]
  56.         #Option     "ColorKey"              # <i>
  57.         #Option     "VideoKey"              # <i>
  58.         #Option     "FallbackDebug"         # [<bool>]
  59.         #Option     "Tiling"                # [<bool>]
  60.         #Option     "Shadow"                # [<bool>]
  61.         #Option     "SwapbuffersWait"       # [<bool>]
  62.         #Option     "XvMC"                  # [<bool>]
  63.         #Option     "XvPreferOverlay"       # [<bool>]
  64.         #Option     "DebugFlushBatches"     # [<bool>]
  65.         #Option     "DebugFlushCaches"      # [<bool>]
  66.         #Option     "DebugWait"             # [<bool>]
  67.     Identifier  "Card0"
  68.     Driver      "intel"
  69.     VendorName  "Intel Corporation"
  70.     BoardName   "82865G Integrated Graphics Controller"
  71.     BusID       "PCI:0:2:0"
  72. EndSection
  73.  
  74. Section "Screen"
  75.     Identifier "Screen0"
  76.     Device     "Card0"
  77.     Monitor    "Monitor0"
  78.         DefaultDepth 16
  79.     SubSection "Display"
  80.         Depth       16
  81.                 Modes       "1280x1024" "1024x800"
  82.         EndSubSection
  83.         SubSection "Display"
  84.                 Depth       24
  85.                 Modes       "1280x1024" "1024x800"
  86.         EndSubSection
  87.  
  88. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement