Advertisement
kemalight

xorg.conf

Feb 8th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 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 "NoAccel" # [<bool>]
  48. #Option "AccelMethod" # <str>
  49. #Option "Backlight" # <str>
  50. #Option "DRI" # <str>
  51. #Option "ColorKey" # <i>
  52. #Option "VideoKey" # <i>
  53. #Option "Tiling" # [<bool>]
  54. #Option "LinearFramebuffer" # [<bool>]
  55. #Option "SwapbuffersWait" # [<bool>]
  56. #Option "TripleBuffer" # [<bool>]
  57. #Option "XvPreferOverlay" # [<bool>]
  58. #Option "HotPlug" # [<bool>]
  59. #Option "ReprobeOutputs" # [<bool>]
  60. #Option "XvMC" # [<bool>]
  61. #Option "ZaphodHeads" # <str>
  62. #Option "TearFree" # [<bool>]
  63. #Option "PerCrtcPixmaps" # [<bool>]
  64. #Option "FallbackDebug" # [<bool>]
  65. #Option "DebugFlushBatches" # [<bool>]
  66. #Option "DebugFlushCaches" # [<bool>]
  67. #Option "DebugWait" # [<bool>]
  68. #Option "BufferCache" # [<bool>]
  69. Identifier "Card0"
  70. Driver "vesa"
  71. BusID "PCI:0:2:0"
  72. EndSection
  73.  
  74. Section "Screen"
  75. Identifier "Screen0"
  76. Device "Card0"
  77. Monitor "Monitor0"
  78. SubSection "Display"
  79. Viewport 0 0
  80. Depth 1
  81. EndSubSection
  82. SubSection "Display"
  83. Viewport 0 0
  84. Depth 4
  85. EndSubSection
  86. SubSection "Display"
  87. Viewport 0 0
  88. Depth 8
  89. EndSubSection
  90. SubSection "Display"
  91. Viewport 0 0
  92. Depth 15
  93. EndSubSection
  94. SubSection "Display"
  95. Viewport 0 0
  96. Depth 16
  97. EndSubSection
  98. SubSection "Display"
  99. Viewport 0 0
  100. Depth 24
  101. EndSubSection
  102. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement