Advertisement
Guest User

Untitled

a guest
Dec 29th, 2012
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. cat /etc/X11/xorg.conf
  2. Section "ServerLayout"
  3. Identifier "X.org Configured"
  4. Screen 0 "Screen0" 0 0
  5. InputDevice "Mouse0" "CorePointer"
  6. InputDevice "Keyboard0" "CoreKeyboard"
  7. Option "SingleCard" "on"
  8. EndSection
  9.  
  10. Section "Files"
  11. ModulePath "/usr/lib/xorg/modules"
  12. FontPath "/usr/share/fonts/X11/misc"
  13. FontPath "/usr/share/fonts/X11/cyrillic"
  14. FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
  15. FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
  16. FontPath "/usr/share/fonts/X11/Type1"
  17. FontPath "/usr/share/fonts/X11/100dpi"
  18. FontPath "/usr/share/fonts/X11/75dpi"
  19. FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  20. FontPath "built-ins"
  21. EndSection
  22.  
  23. Section "Module"
  24. Load "dri"
  25. Load "glx"
  26. Load "dbe"
  27. Load "record"
  28. Load "dri2"
  29. Load "extmod"
  30. EndSection
  31.  
  32. Section "InputDevice"
  33. Identifier "Keyboard0"
  34. Driver "kbd"
  35. EndSection
  36.  
  37. Section "InputDevice"
  38. Identifier "Mouse0"
  39. Driver "mouse"
  40. Option "Protocol" "auto"
  41. Option "Device" "/dev/input/mice"
  42. Option "ZAxisMapping" "4 5 6 7"
  43. EndSection
  44.  
  45. Section "Monitor"
  46. Identifier "Monitor0"
  47. VendorName "Monitor Vendor"
  48. ModelName "Monitor Model"
  49. EndSection
  50.  
  51. Section "Device"
  52. Identifier "Card0"
  53. Driver "nouveau"
  54. BusID "PCI:0:13:0"
  55. Option "ProbeAllGpus" "false"
  56. EndSection
  57. ### Available Driver options are:-
  58. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  59. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  60. ### <percent>: "<f>%"
  61. ### [arg]: arg optional
  62. #Option "SWcursor" # [<bool>]
  63. #Option "HWcursor" # [<bool>]
  64. #Option "NoAccel" # [<bool>]
  65. #Option "ShadowFB" # [<bool>]
  66. #Option "VideoKey" # <i>
  67. #Option "WrappedFB" # [<bool>]
  68. #Option "GLXVBlank" # [<bool>]
  69. #Option "ZaphodHeads" # <str>
  70. #Option "PageFlip" # [<bool>]
  71. #Option "SwapLimit" # <i>
  72. #Option "AsyncUTSDFS" # [<bool>]
  73.  
  74.  
  75. Section "Screen"
  76. Identifier "Screen0"
  77. Device "Card0"
  78. Monitor "Monitor0"
  79. SubSection "Display"
  80. Viewport 0 0
  81. Depth 1
  82. EndSubSection
  83. SubSection "Display"
  84. Viewport 0 0
  85. Depth 4
  86. EndSubSection
  87. SubSection "Display"
  88. Viewport 0 0
  89. Depth 8
  90. EndSubSection
  91. SubSection "Display"
  92. Viewport 0 0
  93. Depth 15
  94. EndSubSection
  95. SubSection "Display"
  96. Viewport 0 0
  97. Depth 16
  98. EndSubSection
  99. SubSection "Display"
  100. Viewport 0 0
  101. Depth 24
  102. EndSubSection
  103. EndSection
  104.  
  105. Section "ServerFlags"
  106. Option "AutoAddGPU" "false"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement