Advertisement
Guest User

/etc/xorg.conf

a guest
Jun 5th, 2013
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 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/lib64/xorg/modules"
  10. FontPath "/usr/share/fonts/misc/"
  11. FontPath "/usr/share/fonts/TTF/"
  12. FontPath "/usr/share/fonts/OTF/"
  13. FontPath "/usr/share/fonts/Type1/"
  14. FontPath "/usr/share/fonts/100dpi/"
  15. FontPath "/usr/share/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19. Load "glx"
  20. EndSection
  21.  
  22. Section "InputDevice"
  23. Identifier "Keyboard0"
  24. Driver "kbd"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28. Identifier "Mouse0"
  29. Driver "mouse"
  30. Option "Protocol" "auto"
  31. Option "Device" "/dev/input/mice"
  32. Option "ZAxisMapping" "4 5 6 7"
  33. EndSection
  34.  
  35. Section "Monitor"
  36. Identifier "Monitor0"
  37. VendorName "Monitor Vendor"
  38. ModelName "Monitor Model"
  39. EndSection
  40.  
  41. Section "Device"
  42. Identifier "Card0"
  43. Driver "nouveau"
  44. BusID "PCI:1:0:0"
  45. EndSection
  46.  
  47. Section "Screen"
  48. Identifier "Screen0"
  49. Device "Card0"
  50. Monitor "Monitor0"
  51. SubSection "Display"
  52. Viewport 0 0
  53. Depth 24
  54. EndSubSection
  55. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement