Advertisement
Guest User

xorg.conf

a guest
Dec 18th, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 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 "ServerFlags"
  9. # Option "AutoAddDevices" "false"
  10. EndSection
  11.  
  12. Section "Files"
  13. ModulePath "/usr/lib/xorg/modules"
  14. FontPath "/usr/share/fonts/misc/"
  15. FontPath "/usr/share/fonts/TTF/"
  16. FontPath "/usr/share/fonts/OTF/"
  17. FontPath "/usr/share/fonts/Type1/"
  18. FontPath "/usr/share/fonts/100dpi/"
  19. FontPath "/usr/share/fonts/75dpi/"
  20.  
  21. FontPath "/usr/share/fonts/corefonts/"
  22. FontPath "/usr/share/fonts/cyrillic/"
  23. FontPath "/usr/share/fonts/dejavu/"
  24. FontPath "/usr/share/fonts/ttf-bitstream-vera/"
  25. FontPath "/usr/share/fonts/terminus/"
  26. FontPath "/usr/share/fonts/urw-fonts/"
  27. # FontPath "/usr/share/fonts/75dpi/"
  28. # FontPath "/usr/share/fonts/75dpi/"
  29. # FontPath "/usr/share/fonts/75dpi/"
  30. # FontPath "/usr/share/fonts/75dpi/"
  31.  
  32. EndSection
  33.  
  34. Section "Module"
  35. Load "glx"
  36. Load "exa"
  37. Load "vbe"
  38. EndSection
  39.  
  40. Section "InputDevice"
  41. Identifier "Keyboard0"
  42. Driver "kbd"
  43. EndSection
  44.  
  45. Section "InputDevice"
  46. Identifier "Mouse0"
  47. Driver "mouse"
  48. Option "Protocol" "auto"
  49. Option "Device" "/dev/input/mice"
  50. Option "ZAxisMapping" "4 5 6 7"
  51. EndSection
  52.  
  53. Section "Monitor"
  54. Identifier "Monitor0"
  55. VendorName "Monitor Vendor"
  56. ModelName "Monitor Model"
  57. EndSection
  58.  
  59. Section "Device"
  60. ### Available Driver options are:-
  61. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  62. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  63. ### <percent>: "<f>%"
  64. ### [arg]: arg optional
  65. #Option "PrintVGARegs" # [<bool>]
  66. #Option "PrintTVRegs" # [<bool>]
  67. #Option "I2CScan" # [<bool>]
  68. #Option "VBEModes" # [<bool>]
  69. #Option "NoAccel" # [<bool>]
  70. # Option "AccelMethod" "exa" # <str>
  71. #Option "ExaNoComposite" # [<bool>]
  72. # Option "ExaScratchSize" "8192" # <i>
  73. #Option "SWCursor" # [<bool>]
  74. #Option "ShadowFB" # [<bool>]
  75. #Option "RotationType" # [<str>]
  76. #Option "Rotate" # [<str>]
  77. #Option "VideoRAM" # <i>
  78. #Option "ActiveDevice" # [<str>]
  79. #Option "TVDotCrawl" # [<bool>]
  80. #Option "TVDeflicker" # <i>
  81. #Option "TVType" # [<str>]
  82. #Option "TVOutput" # [<str>]
  83. #Option "TVPort" # [<str>]
  84. #Option "DisableVQ" # [<bool>]
  85. #Option "DisableIRQ" # [<bool>]
  86. #Option "EnableAGPDMA" # [<bool>]
  87. #Option "NoAGPFor2D" # [<bool>]
  88. #Option "NoXVDMA" # [<bool>]
  89. #Option "VbeSaveRestore" # [<bool>]
  90. #Option "DisableXvBWCheck" # [<bool>]
  91. # Option "MigrationHeuristic" "greedy"
  92. # Option "ModeSwitchMethod" "legacy" # [<str>]
  93. # Option "MaxDRIMem" "16384" # <i>
  94. #Option "AGPMem" # <i>
  95. #Option "I2CDevices" # [<str>]
  96. Identifier "Card0"
  97. Driver "vesa"
  98. BusID "PCI:1:0:0"
  99. EndSection
  100.  
  101. Section "Screen"
  102. Identifier "Screen0"
  103. Device "Card0"
  104. Monitor "Monitor0"
  105. # SubSection "Display"
  106. # Viewport 0 0
  107. # Depth 16
  108. # Modes "1280x720"
  109. # EndSubSection
  110. SubSection "Display"
  111. # Virtual 1280 800
  112. Viewport 0 0
  113. Depth 24
  114. Modes "1280x720"
  115. EndSubSection
  116. EndSection
  117.  
  118. #Section "Extensions"
  119. #Option "Composite" "false"
  120. #EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement