bulks

my xorg.conf (freebsd)

Aug 9th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 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. Option "AllowEmptyInput" "false"
  8. EndSection
  9.  
  10. Section "Files"
  11. ModulePath "/usr/local/lib/xorg/modules"
  12. FontPath "/usr/local/lib/X11/fonts/misc/"
  13. FontPath "/usr/local/lib/X11/fonts/TTF/"
  14. FontPath "/usr/local/lib/X11/fonts/OTF"
  15. FontPath "/usr/local/lib/X11/fonts/Type1/"
  16. FontPath "/usr/local/lib/X11/fonts/100dpi/"
  17. FontPath "/usr/local/lib/X11/fonts/75dpi/"
  18. EndSection
  19.  
  20. Section "Module"
  21. Load "dbe"
  22. Load "dri"
  23. Load "dri2"
  24. Load "extmod"
  25. Load "record"
  26. Load "glx"
  27. EndSection
  28.  
  29. Section "InputDevice"
  30. Identifier "Keyboard0"
  31. Driver "kbd"
  32. EndSection
  33.  
  34. Section "InputDevice"
  35. Identifier "Mouse0"
  36. Driver "mouse"
  37. Option "Protocol" "auto"
  38. Option "Device" "/dev/sysmouse"
  39. Option "ZAxisMapping" "4 5 6 7"
  40. EndSection
  41.  
  42. Section "Monitor"
  43. Identifier "monitor-TV"
  44. VendorName "Monitor Vendor"
  45. ModelName "Monitor Model"
  46. Option "monitor-TMDS-1" "TMDS-1"
  47. Option "monitor-TMDS-2" "TMDS-2"
  48. EndSection
  49.  
  50. Section "Device"
  51. ### Available Driver options are:-
  52. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  53. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  54. ### [arg]: arg optional
  55. #Option "SWcursor" # [<bool>]
  56. #Option "HWcursor" # [<bool>]
  57. #Option "NoAccel" # [<bool>]
  58. #Option "ShadowFB" # [<bool>]
  59. #Option "UseFBDev" # [<bool>]
  60. #Option "Rotate" # [<str>]
  61. #Option "VideoKey" # <i>
  62. #Option "FlatPanel" # [<bool>]
  63. #Option "FPDither" # [<bool>]
  64. #Option "CrtcNumber" # <i>
  65. #Option "FPScale" # [<bool>]
  66. #Option "FPTweak" # <i>
  67. #Option "DualHead" # [<bool>]
  68. Identifier "Card0"
  69. Driver "nv"
  70. VendorName "NVIDIA Corporation"
  71. BoardName "GF108 [GeForce GT 430]"
  72. BusID "PCI:1:0:0"
  73. EndSection
  74.  
  75. Section "Screen"
  76. Identifier "Screen 1"
  77. Device "onboard"
  78. Monitor "mx70"
  79. DefaultDepth 24
  80.  
  81. SubSection "Display"
  82. Viewport 0 0
  83. Depth 24
  84. EndSubSection
  85. SubSection "Display"
  86. Viewport 0 0
  87. Depth 4
  88. EndSubSection
  89. SubSection "Display"
  90. Viewport 0 0
  91. Depth 8
  92. EndSubSection
  93. SubSection "Display"
  94. Viewport 0 0
  95. Depth 15
  96. EndSubSection
  97. SubSection "Display"
  98. Viewport 0 0
  99. Depth 16
  100. EndSubSection
  101. SubSection "Display"
  102. Viewport 0 0
  103. Depth 24
  104. EndSubSection
  105. EndSection
Add Comment
Please, Sign In to add comment