Advertisement
Guest User

xorg.conf

a guest
Dec 12th, 2011
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 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/X11R6/lib/modules"
  10. FontPath "/usr/X11R6/lib/X11/fonts/misc/"
  11. FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
  12. FontPath "/usr/X11R6/lib/X11/fonts/OTF/"
  13. FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
  14. FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
  15. FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19. Load "dbe"
  20. Load "dri"
  21. Load "dri2"
  22. Load "extmod"
  23. Load "glx"
  24. Load "record"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28. Identifier "Keyboard0"
  29. Driver "kbd"
  30. EndSection
  31.  
  32. Section "InputDevice"
  33. Identifier "Mouse0"
  34. Driver "mouse"
  35. Option "Protocol" "wsmouse"
  36. Option "Device" "/dev/wsmouse"
  37. Option "ZAxisMapping" "4 5 6 7"
  38. EndSection
  39.  
  40. Section "Monitor"
  41. Identifier "Monitor0"
  42. VendorName "Monitor Vendor"
  43. ModelName "Monitor Model"
  44. #HorizSync 30.0-107.0
  45. #VertRefresh 48.0-120.0
  46. #ModeLine "1440x900" 106.50 1440 1520 1672 1904 900 903 909 934
  47. ModeLine "1440x900" 136.75 1440 1536 1688 1936 900 903 909 942
  48.  
  49. Option "DPMS"
  50. EndSection
  51.  
  52. Section "Device"
  53. ### Available Driver options are:-
  54. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  55. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  56. ### <percent>: "<f>%"
  57. ### [arg]: arg optional
  58. #Option "ShadowFB" # [<bool>]
  59. #Option "DefaultRefresh" # [<bool>]
  60. #Option "ModeSetClearScreen" # [<bool>]
  61. Identifier "Card0"
  62. Driver "vesa"
  63. BusID "PCI:4:0:0"
  64. EndSection
  65.  
  66. Section "Screen"
  67. Identifier "Screen0"
  68. Device "Card0"
  69. Monitor "Monitor0"
  70. DefaultDepth 24
  71. SubSection "Display"
  72. Viewport 0 0
  73. Depth 24
  74. #Modes "800x600"
  75. Modes "1440x900"
  76. EndSubSection
  77. EndSection
  78.  
  79.  
  80.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement