Guest User

Untitled

a guest
Feb 25th, 2012
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. [root@eee ~]# cat /etc/X11/xorg.conf
  2. Section "ServerFlags"
  3. Option "DontZap" "false"
  4. Option "AllowMouseOpenFail"
  5. EndSection
  6.  
  7. Section "Files"
  8. InputDevices "/dev/gpmdata"
  9. InputDevices "/dev/input/mice"
  10. FontPath "/usr/share/fonts/misc:unscaled"
  11. FontPath "/usr/share/fonts/75dpi:unscaled"
  12. FontPath "/usr/share/fonts/100dpi:unscaled"
  13. FontPath "/usr/share/fonts/Type1"
  14. FontPath "/usr/share/fonts/Speedo"
  15. FontPath "/usr/share/fonts/cyrillic"
  16. EndSection
  17.  
  18. Section "Module"
  19. Load "extmod"
  20. Load "record"
  21. Load "dbe"
  22. Load "dri"
  23. Load "dri2"
  24. Load "glx"
  25. Load "GLcore"
  26. Load "xtrap"
  27. Load "freetype"
  28. Load "synaptics"
  29. EndSection
  30.  
  31. Section "InputDevice"
  32. Identifier "Keyboard0"
  33. Option "XkbRules" "xorg"
  34. Option "Device" "/dev/input/event1"
  35. Option "Protocol" "evdev"
  36. Option "XkbModel" "evdev"
  37. Option "XkbLayout" "us,ru"
  38. Option "XkbOptions" "grp:ctrl_shift_toggle,grp_led:scroll,compose:menu"
  39. Driver "evdev"
  40. EndSection
  41.  
  42. Section "InputDevice"
  43. Identifier "Mouse0"
  44. Driver "mouse"
  45. Option "Protocol" "ExplorerPS/2"
  46. Option "Device" "/dev/input/mice"
  47. Option "CorePointer"
  48. Option "ZAxisMapping" "4 5"
  49. Option "Name" "Mouse"
  50. EndSection
  51.  
  52. Section "Monitor"
  53. Identifier "Monitor0"
  54. VendorName "Monitor Vendor"
  55. ModelName "Monitor Model"
  56. EndSection
  57.  
  58. Section "Device"
  59. ### Available Driver options are:-
  60. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  61. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  62. ### <percent>: "<f>%"
  63. ### [arg]: arg optional
  64. Option "DRI" "true" # [<bool>]
  65. #Option "ColorKey" # <i>
  66. #Option "VideoKey" # <i>
  67. #Option "FallbackDebug" # [<bool>]
  68. #Option "Tiling" # [<bool>]
  69. #Option "LinearFramebuffer" # [<bool>]
  70. #Option "Shadow" # [<bool>]
  71. #Option "SwapbuffersWait" # [<bool>]
  72. Option "XvMC" "true" # [<bool>]
  73. #Option "XvPreferOverlay" # [<bool>]
  74. #Option "DebugFlushBatches" # [<bool>]
  75. #Option "DebugFlushCaches" # [<bool>]
  76. #Option "DebugWait" # [<bool>]
  77. #Option "HotPlug" # [<bool>]
  78. #Option "RelaxedFencing" # [<bool>]
  79. Identifier "Card0"
  80. Driver "intel"
  81. BusID "PCI:0:2:0"
  82. EndSection
  83.  
  84. Section "Screen"
  85. Identifier "Screen0"
  86. Device "Card0"
  87. Monitor "Monitor0"
  88. SubSection "Display"
  89. Viewport 0 0
  90. Depth 1
  91. EndSubSection
  92. SubSection "Display"
  93. Viewport 0 0
  94. Depth 4
  95. EndSubSection
  96. SubSection "Display"
  97. Viewport 0 0
  98. Depth 8
  99. EndSubSection
  100. SubSection "Display"
  101. Viewport 0 0
  102. Depth 15
  103. EndSubSection
  104. SubSection "Display"
  105. Viewport 0 0
  106. Depth 16
  107. EndSubSection
  108. SubSection "Display"
  109. Viewport 0 0
  110. Depth 24
  111. EndSubSection
  112. EndSection
  113.  
  114. Section "ServerLayout"
  115. Identifier "X.org Configured"
  116. Screen 0 "Screen0" 0 0
  117. InputDevice "Mouse0" "CorePointer"
  118. InputDevice "Keyboard0" "CoreKeyboard"
  119. Option "AutoAddDevices" "yes"
  120. Option "AllowEmptyInput" "false"
  121. EndSection
Advertisement
Add Comment
Please, Sign In to add comment