Advertisement
Guest User

Untitled

a guest
Jun 19th, 2013
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. $ cat /etc/X11/xorg.conf
  2. Section "ServerLayout"
  3. Identifier "X.org Configured"
  4. Screen 0 "Screen0" 0 0
  5. InputDevice "Mouse0" "CorePointer"
  6. InputDevice "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Files"
  10. ModulePath "/usr/lib64/xorg/modules"
  11. FontPath "/usr/share/fonts/misc/"
  12. FontPath "/usr/share/fonts/TTF/"
  13. FontPath "/usr/share/fonts/OTF/"
  14. FontPath "/usr/share/fonts/Type1/"
  15. FontPath "/usr/share/fonts/100dpi/"
  16. FontPath "/usr/share/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20. Load "glx"
  21. EndSection
  22.  
  23. Section "InputDevice"
  24. Identifier "Keyboard0"
  25. Driver "kbd"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29. Identifier "Mouse0"
  30. Driver "mouse"
  31. Option "Protocol" "auto"
  32. Option "Device" "/dev/input/mice"
  33. Option "ZAxisMapping" "4 5 6 7"
  34. EndSection
  35.  
  36. Section "Monitor"
  37. Identifier "Monitor0"
  38. VendorName "Monitor Vendor"
  39. ModelName "Monitor Model"
  40. # 1920x1080 @ 60.00 Hz (GTF) hsync: 67.08 kHz; pclk: 172.80 MHz
  41. Modeline "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync +Vsync
  42. EndSection
  43.  
  44. Section "Device"
  45. Option "AccelMethod" "sna"
  46. Option "TearFree" "true"
  47. Option "DRI" "True"
  48. Identifier "Card0"
  49. Driver "intel"
  50. BusID "PCI:0:2:0"
  51. EndSection
  52.  
  53. Section "Screen"
  54. Identifier "Screen0"
  55. Device "Card0"
  56. Monitor "Monitor0"
  57. SubSection "Display"
  58. Viewport 0 0
  59. Depth 24
  60. Modes "1920x1080"
  61. EndSubSection
  62. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement