Advertisement
mrhpeng

xorg.conf

Oct 7th, 2013
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  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/xorg/modules"
  11. FontPath "/usr/share/fonts/misc/"
  12. FontPath "/usr/share/fonts/TTF/"
  13. FontPath "/usr/share/fonts/OTF/"
  14. FontPath "/usr/share/fonts/Type1/"
  15. FontPath "/usr/share/fonts/100dpi/"
  16. FontPath "/usr/share/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20. Load "glx"
  21. EndSection
  22.  
  23. Section "InputDevice"
  24. Identifier "Keyboard0"
  25. Driver "kbd"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29. Identifier "Mouse0"
  30. Driver "mouse"
  31. Option "Protocol" "auto"
  32. Option "Device" "/dev/input/mice"
  33. Option "ZAxisMapping" "4 5 6 7"
  34. EndSection
  35.  
  36. Section "Monitor"
  37. Identifier "Monitor0"
  38. VendorName "Monitor Vendor"
  39. ModelName "Monitor Model"
  40. EndSection
  41.  
  42. Section "Monitor"
  43. Identifier "Monitor1"
  44. VendorName "Monitor Vendor"
  45. ModelName "Monitor Model"
  46. EndSection
  47.  
  48. Section "Module"
  49. Load "dri2"
  50. Load "glamoregl"
  51. EndSection
  52.  
  53. Section "Device"
  54. ### Available Driver options are:-
  55. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  56. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  57. ### <percent>: "<f>%"
  58. ### [arg]: arg optional
  59. #Option "NoAccel" # [<bool>]
  60. #Option "SWcursor" # [<bool>]
  61. #Option "EnablePageFlip" # [<bool>]
  62. #Option "ColorTiling" # [<bool>]
  63. #Option "ColorTiling2D" # [<bool>]
  64. #Option "RenderAccel" # [<bool>]
  65. #Option "SubPixelOrder" # [<str>]
  66. Option "AccelMethod" "glamor"
  67. #Option "EXAVSync" # [<bool>]
  68. #Option "EXAPixmaps" # [<bool>]
  69. #Option "ZaphodHeads" # <str>
  70. #Option "EnablePageFlip" # [<bool>]
  71. #Option "SwapbuffersWait" # [<bool>]
  72. Identifier "Card0"
  73. Driver "radeon"
  74. BusID "PCI:1:0:0"
  75. EndSection
  76.  
  77. Section "Device"
  78. ### Available Driver options are:-
  79. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  80. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  81. ### <percent>: "<f>%"
  82. ### [arg]: arg optional
  83. #Option "ShadowFB" # [<bool>]
  84. #Option "DefaultRefresh" # [<bool>]
  85. #Option "ModeSetClearScreen" # [<bool>]
  86. Identifier "Card1"
  87. Driver "vesa"
  88. BusID "PCI:1:0:0"
  89. EndSection
  90.  
  91. Section "Screen"
  92. Identifier "Screen0"
  93. Device "Card0"
  94. Monitor "Monitor0"
  95. SubSection "Display"
  96. Viewport 0 0
  97. Depth 32
  98. EndSubSection
  99. EndSection
  100.  
  101. Section "Screen"
  102. Identifier "Screen1"
  103. Device "Card0"
  104. Monitor "Monitor1"
  105. SubSection "Display"
  106. Viewport 0 0
  107. Depth 32
  108. EndSubSection
  109. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement