Advertisement
Guest User

Xorg.conf - working with Intel HD graphics

a guest
Mar 23rd, 2011
1,283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "Module"
  2.     Load  "extmod"
  3.     Load  "dbe"
  4.     Load  "record"
  5.     Load  "freetype"
  6.     Load  "glx"
  7.     Load  "dri"
  8.     Load  "dri2"
  9.         Load  "type1"
  10. EndSection
  11. Section "DRI"
  12.  
  13.     Mode 0666
  14.  
  15. EndSection
  16.  
  17. Section "Files"
  18.  
  19.     ModulePath "/opt/xorg/lib/xorg/modules"
  20.  
  21. EndSection
  22.  
  23. Section "InputDevice"
  24.  
  25.     Identifier  "Keyboard1"
  26.     Driver  "kbd"
  27.  
  28. EndSection
  29.  
  30. Section "InputDevice"
  31.  
  32.     Identifier  "Mouse1"
  33.     Driver  "mouse"
  34.  
  35.     Option  "ZAxisMapping" "4 5"
  36.     Option  "Buttons" "3"
  37. EndSection
  38. Section "Monitor"
  39.  
  40.     Identifier  "My Monitor"
  41.  
  42.  
  43.   HorizSync   31.5 - 150.0
  44.  
  45.   VertRefresh 75-85
  46.  
  47. EndSection
  48.  
  49.  
  50. Section "Device"
  51.     Identifier  "VESA Framebuffer"
  52.     Driver      "intel"
  53. EndSection
  54.  
  55. Section "Screen"
  56.     Identifier  "Screen 1"
  57.     Device      "VESA Framebuffer"
  58.     Monitor     "My Monitor"
  59.  
  60.  
  61.    DefaultDepth 24
  62.  
  63.     Subsection "Display"
  64.         Depth       24
  65.         Modes "1366x768" "1024x768" "800x600" "640x480"
  66.     EndSubsection
  67.  
  68.  
  69. EndSection
  70.  
  71. Section "ServerLayout"
  72.  
  73.  
  74.     Identifier  "Simple Layout"
  75.  
  76.  
  77.     Screen "Screen 1"
  78.  
  79.  
  80.     InputDevice "Mouse1" "CorePointer"
  81.     InputDevice "Keyboard1" "CoreKeyboard"
  82.  
  83. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement