Blog Code Forum

FreeBSD:Desktop

From Wiki.cyring.fr

(Difference between revisions)
Jump to: navigation, search
(Created page with "===== /etc/X11/xorg.conf ===== <syntaxhighlight lang="xorg_conf"> Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 ...")
 
Line 1: Line 1:
-
===== /etc/X11/xorg.conf =====
+
===== Xorg =====
-
<syntaxhighlight lang="xorg_conf">
+
<br />
 +
<syntaxhighlight lang="bash">
 +
# nano /etc/X11/xorg.conf
 +
</syntaxhighlight><br />
 +
<syntaxhighlight lang="xorg_conf" line start="1">
Section "ServerLayout"
Section "ServerLayout"
         Identifier    "X.org Configured"
         Identifier    "X.org Configured"

Latest revision as of 13:47, 6 April 2012

Xorg


# nano /etc/X11/xorg.conf

  1. Section "ServerLayout"
  2.         Identifier     "X.org Configured"
  3.         Screen         0  "Screen0" 0 0
  4.         InputDevice    "Keyboard0" "CoreKeyboard"
  5. EndSection
  6.  
  7. Section "Files"
  8.         ModulePath     "/usr/local/lib/xorg/modules"
  9.         FontPath       "/usr/local/lib/X11/fonts/misc/"
  10.         FontPath       "/usr/local/lib/X11/fonts/TTF/"
  11.         FontPath       "/usr/local/lib/X11/fonts/OTF"
  12.         FontPath       "/usr/local/lib/X11/fonts/Type1/"
  13.         FontPath       "/usr/local/lib/X11/fonts/100dpi/"
  14.         FontPath       "/usr/local/lib/X11/fonts/75dpi/"
  15. EndSection
  16.  
  17. Section "Module"
  18.         Load           "dbe"
  19.         Load           "dri"
  20.         Load           "dri2"
  21.         Load           "extmod"
  22.         Load           "glx"
  23.         Load           "record"
  24. EndSection
  25.  
  26. Section "InputDevice"
  27.         Identifier     "Keyboard0"
  28.         Driver         "kbd"
  29.         Option         "XkbLayout" "fr"
  30. EndSection
  31.  
  32. Section "Monitor"
  33.         Identifier     "Monitor0"
  34.         VendorName     "ViewSonic"
  35.         ModelName      "VX912"
  36.         Option         "DPMS"
  37. EndSection
  38.  
  39. Section "Device"
  40.         Identifier     "Card0"
  41.         Driver         "radeonhd"
  42.         VendorName     "ATI Technologies Inc"
  43.         BoardName      "RV730XT [Radeon HD 4670]"
  44.         BusID          "PCI:3:0:0"
  45.         Option         "ForceLowPowerMode" "True"
  46. EndSection
  47.  
  48. Section "Screen"
  49.         Identifier     "Screen0"
  50.         Device         "Card0"
  51.         Monitor        "Monitor0"
  52.         SubSection "Display"
  53.                    Viewport   0 0
  54.                    Depth     24
  55.         EndSubSection
  56. EndSection
Personal tools