Advertisement
Guest User

Xorg config

a guest
Jun 12th, 2011
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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/lib64/xorg/modules"
  10.     FontPath     "/usr/share/fonts/misc/"
  11.     FontPath     "/usr/share/fonts/TTF/"
  12.     FontPath     "/usr/share/fonts/OTF/"
  13.     FontPath     "/usr/share/fonts/Type1/"
  14.     FontPath     "/usr/share/fonts/100dpi/"
  15.     FontPath     "/usr/share/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19.     Load  "record"
  20.     Load  "glx"
  21.     Load  "dbe"
  22.     Load  "extmod"
  23. EndSection
  24.  
  25. Section "InputDevice"
  26.     Identifier  "Keyboard0"
  27.     Driver      "kbd"
  28.     Option "XkbLayout" "fr"
  29. EndSection
  30.  
  31. Section "InputClass"
  32.     Identifier "Keyboard-all"
  33.     Driver "evdev"
  34.     Option "XkbLayout" "fr"
  35. EndSection
  36.  
  37. Section "InputDevice"
  38.     Identifier  "Mouse0"
  39.     Driver      "mouse"
  40.     Option      "Protocol" "auto"
  41.     Option      "Device" "/dev/input/mice"
  42.     Option      "ZAxisMapping" "4 5 6 7"
  43. EndSection
  44.  
  45. Section "Monitor"
  46.     Identifier   "Monitor0"
  47.     VendorName   "Monitor Vendor"
  48.     ModelName    "Monitor Model"
  49. EndSection
  50.  
  51. Section "Device"
  52.     Identifier  "Card0"
  53.     Driver      "nv"
  54.     BusID       "PCI:0:13:0"
  55. EndSection
  56.  
  57. Section "Screen"
  58.     Identifier "Screen0"
  59.     Device     "Card0"
  60.     Monitor    "Monitor0"
  61.     SubSection "Display"
  62.         Viewport   0 0
  63.         Depth     1
  64.     EndSubSection
  65.     SubSection "Display"
  66.         Viewport   0 0
  67.         Depth     4
  68.     EndSubSection
  69.     SubSection "Display"
  70.         Viewport   0 0
  71.         Depth     8
  72.     EndSubSection
  73.     SubSection "Display"
  74.         Viewport   0 0
  75.         Depth     15
  76.     EndSubSection
  77.     SubSection "Display"
  78.         Viewport   0 0
  79.         Depth     16
  80.     EndSubSection
  81.     SubSection "Display"
  82.         Viewport   0 0
  83.         Depth     24
  84.     EndSubSection
  85. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement