BSD Stuff
xorg.conf--old
30 August 2006, 01:29
This is my skeleton /etc/X11/xorg.conf file for my FreeBSD systems. This config file is set up to support 3 monitors.
# cd /etc/Xorg/# vim xorg.conf
| # | Code |
|---|---|
| 0001 | Section "ServerLayout" |
| 0002 | Identifier "Default Layout" |
| 0003 | InputDevice "Mouse0" "CorePointer" |
| 0004 | InputDevice "Keyboard0" "CoreKeyboard" |
| 0005 | Option "Xinerama" "on" |
| 0006 | Option "Clone" "off" |
| 0007 | #Option "Offtime" "10" |
| 0008 | Screen "Screen 0" 0 0 |
| 0009 | Screen "Screen 1" LeftOf "Screen 0" |
| 0010 | Screen "Screen 2" LeftOf "Screen 1" |
| 0011 | EndSection |
| 0012 | |
| 0013 | Section "Extensions" |
| 0014 | Option "Composite" "Enable" |
| 0015 | Option "RENDER" "Enable" |
| 0016 | EndSection |
| 0017 | |
| 0018 | Section "Files" |
| 0019 | RgbPath "/usr/X11R6/lib/X11/rgb" |
| 0020 | ModulePath "/usr/X11R6/lib/modules" |
| 0021 | FontPath "/usr/X11R6/lib/X11/fonts/misc/:unscaled" |
| 0022 | FontPath "/usr/X11R6/lib/X11/fonts/TTF/" |
| 0023 | FontPath "/usr/X11R6/lib/X11/fonts/Type1/" |
| 0024 | #FontPath "/usr/X11R6/lib/X11/fonts/CID/" |
| 0025 | FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled" |
| 0026 | FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled" |
| 0027 | FontPath "/usr/X11R6/lib/X11/fonts/artwiz-fonts" |
| 0028 | FontPath "/usr/X11R6/lib/X11/fonts/artwiz-aleczapka-en" |
| 0029 | FontPath "/usr/X11R6/lib/X11/fonts/dejavu/" |
| 0030 | FontPath "/usr/X11R6/lib/X11/fonts/koi8-u-gemini/" |
| 0031 | FontPath "/usr/X11R6/lib/X11/fonts/URW/" |
| 0032 | FontPath "/usr/X11R6/lib/X11/fonts/freefont/" |
| 0033 | FontPath "/usr/X11R6/lib/X11/fonts/webfonts/" |
| 0034 | FontPath "/usr/X11R6/lib/X11/fonts/avifonts/" |
| 0035 | EndSection |
| 0036 | |
| 0037 | Section "Module" |
| 0038 | Load "extmod" |
| 0039 | #Load "dri" |
| 0040 | Load "glx" |
| 0041 | Load "dbe" |
| 0042 | Load "record" |
| 0043 | #Load "xtrap" |
| 0044 | Load "type1" |
| 0045 | Load "freetype" |
| 0046 | Load "ramdac" |
| 0047 | EndSection |
| 0048 | |
| 0049 | Section "InputDevice" |
| 0050 | Identifier "Keyboard0" |
| 0051 | Driver "kbd" |
| 0052 | EndSection |
| 0053 | |
| 0054 | Section "InputDevice" |
| 0055 | Identifier "Mouse0" |
| 0056 | Driver "mouse" |
| 0057 | Option "Protocol" "Auto" |
| 0058 | Option "Device" "/dev/sysmouse" |
| 0059 | EndSection |
| 0060 | |
| 0061 | Section "Monitor" |
| 0062 | Identifier "Monitor0" |
| 0063 | VendorName "IVM" |
| 0064 | ModelName "PLE431" |
| 0065 | ### Comment all HorizSync and VertSync values to use DDC: |
| 0066 | HorizSync 24.0 - 83.0 |
| 0067 | VertRefresh 55.0 - 75.0 |
| 0068 | Option "DPMS" "on" |
| 0069 | EndSection |
| 0070 | |
| 0071 | Section "Monitor" |
| 0072 | Identifier "Monitor1" |
| 0073 | VendorName "HSL" |
| 0074 | ModelName "720E" |
| 0075 | ### Comment all HorizSync and VertSync values to use DDC: |
| 0076 | HorizSync 30.0 - 72.0 |
| 0077 | VertRefresh 50.0 - 160.0 |
| 0078 | Option "DPMS" |
| 0079 | EndSection |
| 0080 | |
| 0081 | Section "Device" |
| 0082 | Identifier "nvidia0" |
| 0083 | Driver "nvidia" |
| 0084 | VendorName "nVidia Corporation" |
| 0085 | BoardName "NV25 [GeForce4 Ti 4200]" |
| 0086 | BusID "PCI:1:0:0" |
| 0087 | Screen 0 |
| 0088 | Option "RenderAccel" "true" |
| 0089 | Option "AllowGLXWithComposite" "true" |
| 0090 | EndSection |
| 0091 | |
| 0092 | Section "Device" |
| 0093 | Identifier "nvidia1" |
| 0094 | Driver "nvidia" |
| 0095 | VendorName "nVidia Corporation" |
| 0096 | BoardName "NV25 [GeForce4 Ti 4200]" |
| 0097 | BusID "PCI:1:0:0" |
| 0098 | Screen 1 |
| 0099 | Option "RenderAccel" "true" |
| 0100 | Option "AllowGLXWithComposite" "true" |
| 0101 | EndSection |
| 0102 | |
| 0103 | Section "Device" |
| 0104 | Identifier "Card0" |
| 0105 | Driver "mga" |
| 0106 | VendorName "Matrox Graphics, Inc." |
| 0107 | BoardName "G400/G450" |
| 0108 | BusID "PCI:2:0:0" |
| 0109 | EndSection |
| 0110 | |
| 0111 | Section "Screen" |
| 0112 | Identifier "Screen 0" |
| 0113 | Device "nvidia0" |
| 0114 | Monitor "Monitor0" |
| 0115 | DefaultDepth 24 |
| 0116 | SubSection "Display" |
| 0117 | Depth 24 |
| 0118 | Modes "1280x1024" |
| 0119 | EndSubSection |
| 0120 | EndSection |
| 0121 | |
| 0122 | Section "Screen" |
| 0123 | Identifier "Screen 1" |
| 0124 | Device "nvidia1" |
| 0125 | Monitor "Monitor0" |
| 0126 | DefaultDepth 24 |
| 0127 | SubSection "Display" |
| 0128 | Viewport 0 0 |
| 0129 | Depth 24 |
| 0130 | Modes "1280x1024" |
| 0131 | EndSubSection |
| 0132 | EndSection |
| 0133 | |
| 0134 | Section "Screen" |
| 0135 | Identifier "Screen 2" |
| 0136 | Device "Card0" |
| 0137 | Monitor "Monitor1" |
| 0138 | DefaultDepth 24 |
| 0139 | SubSection "Display" |
| 0140 | Viewport 0 0 |
| 0141 | Depth 24 |
| 0142 | Modes "1280x1024" |
| 0143 | EndSubSection |
| 0144 | EndSection |
| 0145 | |
| 0146 | Section "DRI" |
| 0147 | Group 0 |
| 0148 | Mode 0666 |
| 0149 | EndSection |
| 0150 |
Page 1 of 1