xorg.conf 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. Section "Files"
  8. ModulePath "/usr/lib/xorg/modules"
  9. FontPath "/usr/share/fonts/misc/"
  10. FontPath "/usr/share/fonts/TTF/"
  11. #FontPath "/usr/share/fonts/OTF/"
  12. #FontPath "/usr/share/fonts/Type1/"
  13. FontPath "/usr/share/fonts/100dpi/"
  14. FontPath "/usr/share/fonts/75dpi/"
  15. EndSection
  16. Section "Module"
  17. Load "glx"
  18. EndSection
  19. Section "InputDevice"
  20. Identifier "Keyboard0"
  21. Driver "kbd"
  22. EndSection
  23. Section "InputDevice"
  24. Identifier "Mouse0"
  25. Driver "mouse"
  26. Option "Protocol" "auto"
  27. Option "Device" "/dev/input/mice"
  28. Option "ZAxisMapping" "4 5 6 7"
  29. EndSection
  30. Section "Monitor"
  31. Identifier "Monitor0"
  32. VendorName "Monitor Vendor"
  33. ModelName "Monitor Model"
  34. EndSection
  35. Section "Device"
  36. ### Available Driver options are:-
  37. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  38. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  39. ### <percent>: "<f>%"
  40. ### [arg]: arg optional
  41. #Option "ShadowFB" # [<bool>]
  42. #Option "Rotate" # <str>
  43. #Option "fbdev" # <str>
  44. #Option "debug" # [<bool>]
  45. Identifier "Card0"
  46. Driver "fbdev"
  47. #BusID "PCI:0:2:0"
  48. Driver "vesa"
  49. EndSection
  50. Section "Screen"
  51. Identifier "Screen0"
  52. Device "Card0"
  53. Monitor "Monitor0"
  54. SubSection "Display"
  55. #Viewport 0 0
  56. Depth 24
  57. Modes "1280x1024"
  58. EndSubSection
  59. EndSection