Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  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/local/lib/xorg/modules"
  10. FontPath "/usr/local/share/fonts/misc/"
  11. FontPath "/usr/local/share/fonts/TTF/"
  12. FontPath "/usr/local/share/fonts/OTF/"
  13. FontPath "/usr/local/share/fonts/Type1/"
  14. FontPath "/usr/local/share/fonts/100dpi/"
  15. FontPath "/usr/local/share/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19. Load "glx"
  20. EndSection
  21.  
  22. Section "InputDevice"
  23. Identifier "Keyboard0"
  24. Driver "kbd"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28. Identifier "Mouse0"
  29. Driver "mouse"
  30. Option "Protocol" "auto"
  31. Option "Device" "/dev/sysmouse"
  32. Option "ZAxisMapping" "4 5 6 7"
  33. EndSection
  34.  
  35. Section "Monitor"
  36. Identifier "Monitor0"
  37. VendorName "Monitor Vendor"
  38. ModelName "Monitor Model"
  39. EndSection
  40.  
  41. Section "Device"
  42. ### Available Driver options are:-
  43. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  44. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  45. ### <percent>: "<f>%"
  46. ### [arg]: arg optional
  47. #Option "Accel" # [<bool>]
  48. #Option "AccelMethod" # <str>
  49. #Option "Backlight" # <str>
  50. #Option "CustomEDID" # <str>
  51. #Option "DRI" # <str>
  52. #Option "Present" # [<bool>]
  53. #Option "ColorKey" # <i>
  54. #Option "VideoKey" # <i>
  55. #Option "Tiling" # [<bool>]
  56. #Option "LinearFramebuffer" # [<bool>]
  57. #Option "HWRotation" # [<bool>]
  58. #Option "VSync" # [<bool>]
  59. #Option "PageFlip" # [<bool>]
  60. #Option "SwapbuffersWait" # [<bool>]
  61. #Option "TripleBuffer" # [<bool>]
  62. #Option "XvPreferOverlay" # [<bool>]
  63. #Option "HotPlug" # [<bool>]
  64. #Option "ReprobeOutputs" # [<bool>]
  65. #Option "XvMC" # [<bool>]
  66. #Option "ZaphodHeads" # <str>
  67. #Option "VirtualHeads" # <i>
  68. #Option "TearFree" # [<bool>]
  69. #Option "PerCrtcPixmaps" # [<bool>]
  70. #Option "FallbackDebug" # [<bool>]
  71. #Option "DebugFlushBatches" # [<bool>]
  72. #Option "DebugFlushCaches" # [<bool>]
  73. #Option "DebugWait" # [<bool>]
  74. #Option "BufferCache" # [<bool>]
  75. Identifier "Card0"
  76. Driver "intel" (comment: not in real file -- changing this to scfb will start X)
  77. BusID "PCI:0:2:0"
  78. EndSection
  79.  
  80. Section "Screen"
  81. Identifier "Screen0"
  82. Device "Card0"
  83. Monitor "Monitor0"
  84. SubSection "Display"
  85. Viewport 0 0
  86. Depth 1
  87. EndSubSection
  88. SubSection "Display"
  89. Viewport 0 0
  90. Depth 4
  91. EndSubSection
  92. SubSection "Display"
  93. Viewport 0 0
  94. Depth 8
  95. EndSubSection
  96. SubSection "Display"
  97. Viewport 0 0
  98. Depth 15
  99. EndSubSection
  100. SubSection "Display"
  101. Viewport 0 0
  102. Depth 16
  103. EndSubSection
  104. SubSection "Display"
  105. Viewport 0 0
  106. Depth 24
  107. EndSubSection
  108. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement