Advertisement
Guest User

xorg.conf.new

a guest
Jun 15th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 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/local/lib/xorg/modules"
  10. FontPath "/usr/local/share/fonts/misc/"
  11. FontPath "/usr/local/share/fonts/TTF/"
  12. FontPath "/usr/local/share/fonts/OTF/"
  13. FontPath "/usr/local/share/fonts/Type1/"
  14. FontPath "/usr/local/share/fonts/100dpi/"
  15. FontPath "/usr/local/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/sysmouse"
  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. ### Available Driver options are:-
  43. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  44. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  45. ### <percent>: "<f>%"
  46. ### [arg]: arg optional
  47. #Option "ShadowFB" # [<bool>]
  48. #Option "DefaultRefresh" # [<bool>]
  49. #Option "ModeSetClearScreen" # [<bool>]
  50. Identifier "Card0"
  51. Driver "intel"
  52. BusID "PCI:0:2:0"
  53. EndSection
  54.  
  55. Section "Screen"
  56. Identifier "Screen0"
  57. Device "Card0"
  58. Monitor "Monitor0"
  59. SubSection "Display"
  60. Viewport 0 0
  61. Depth 1
  62. EndSubSection
  63. SubSection "Display"
  64. Viewport 0 0
  65. Depth 4
  66. EndSubSection
  67. SubSection "Display"
  68. Viewport 0 0
  69. Depth 8
  70. EndSubSection
  71. SubSection "Display"
  72. Viewport 0 0
  73. Depth 15
  74. EndSubSection
  75. SubSection "Display"
  76. Viewport 0 0
  77. Depth 16
  78. EndSubSection
  79. SubSection "Display"
  80. Viewport 0 0
  81. Depth 24
  82. EndSubSection
  83. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement