Advertisement
Guest User

xorg.conf

a guest
Dec 25th, 2013
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 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. Option "AutoAddDevices" "Off"
  7. EndSection
  8.  
  9. Section "Files"
  10. ModulePath "/usr/local/lib/xorg/modules"
  11. FontPath "/usr/local/lib/X11/fonts/misc/"
  12. FontPath "/usr/local/lib/X11/fonts/TTF/"
  13. FontPath "/usr/local/lib/X11/fonts/OTF/"
  14. FontPath "/usr/local/lib/X11/fonts/Type1/"
  15. FontPath "/usr/local/lib/X11/fonts/100dpi/"
  16. FontPath "/usr/local/lib/X11/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20. Load "dbe"
  21. Load "dri"
  22. Load "dri2"
  23. Load "extmod"
  24. Load "record"
  25. # Load "glx"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29. Identifier "Keyboard0"
  30. Driver "kbd"
  31. EndSection
  32.  
  33. Section "InputDevice"
  34. Identifier "Mouse0"
  35. Driver "mouse"
  36. Option "Protocol" "auto"
  37. Option "Device" "/dev/sysmouse"
  38. Option "ZAxisMapping" "4 5 6 7"
  39. EndSection
  40.  
  41. Section "Monitor"
  42. Identifier "Laptop"
  43. VendorName "Monitor Vendor"
  44. ModelName "Monitor Model"
  45. Option "DPMS"
  46. EndSection
  47.  
  48. Section "Device"
  49. ### Available Driver options are:-
  50. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  51. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  52. ### <percent>: "<f>%"
  53. ### [arg]: arg optional
  54. #Option "NoAccel" # [<bool>]
  55. #Option "AccelMethod" # <str>
  56. #Option "Backlight" # <str>
  57. #Option "DRI" # <str>
  58. #Option "ColorKey" # <i>
  59. #Option "VideoKey" # <i>
  60. #Option "Tiling" # [<bool>]
  61. #Option "LinearFramebuffer" # [<bool>]
  62. #Option "SwapbuffersWait" # [<bool>]
  63. #Option "TripleBuffer" # [<bool>]
  64. #Option "XvPreferOverlay" # [<bool>]
  65. #Option "HotPlug" # [<bool>]
  66. #Option "ReprobeOutputs" # [<bool>]
  67. #Option "XvMC" # [<bool>]
  68. #Option "ZaphodHeads" # <str>
  69. #Option "TearFree" # [<bool>]
  70. #Option "PerCrtcPixmaps" # [<bool>]
  71. #Option "FallbackDebug" # [<bool>]
  72. #Option "DebugFlushBatches" # [<bool>]
  73. #Option "DebugFlushCaches" # [<bool>]
  74. #Option "DebugWait" # [<bool>]
  75. #Option "BufferCache" # [<bool>]
  76. Option "Monitor-LVDS1" "Display"
  77. Identifier "Card0"
  78. Driver "intel"
  79. BusID "PCI:0:2:0"
  80. EndSection
  81.  
  82. Section "Screen"
  83. Identifier "Screen0"
  84. Device "Card0"
  85. Monitor "Laptop"
  86. SubSection "Display"
  87. Depth 24
  88. Modes "1920x1080"
  89. EndSubSection
  90. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement