Advertisement
Guest User

Artem S Tashkinov

a guest
Oct 10th, 2007
924
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.25 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier     "Default Layout"
  3.     Screen      0  "Screen0" 0 0
  4.     InputDevice    "Mouse0" "CorePointer"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9.     FontPath     "unix/:7100"
  10. EndSection
  11.  
  12. Section "Module"
  13.     Load  "dbe"
  14.     Load  "extmod"
  15.     Load  "dri"
  16.     Load  "glx"
  17. EndSection
  18.  
  19. Section "ServerFlags"
  20.     Option "DontZoom"
  21. EndSection
  22.  
  23. Section "Extensions"
  24.     Option "Composite" "Enable"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28.     Identifier  "Keyboard0"
  29.     Driver      "kbd"
  30.     Option      "XkbModel"      "pc105"
  31.     Option      "XkbLayout"     "us,ru(winkeys)"
  32.     Option      "XkbOptions"        "grp:alt_shift_toggle,grp_led:scroll"
  33.     Option      "Xleds"         "1 2 3"
  34. EndSection
  35.  
  36. Section "InputDevice"
  37.     Identifier  "Mouse0"
  38.     Driver      "mouse"
  39.     Option      "Protocol" "auto"
  40.     Option      "Device"   "/dev/input/mice"
  41.     Option      "ZAxisMapping"  "4 5"
  42. EndSection
  43.  
  44. Section "Monitor"
  45.     Identifier  "Monitor0"
  46.     VendorName  "LG"
  47.     ModelName   "1730B"
  48.     Option      "DPMS"
  49. EndSection
  50.  
  51. Section "Device"
  52.     Identifier  "Videocard0"
  53. # CHANGE THIS OR LEAVE COMMENTED
  54. #   BusID       "PCI:1:0:0"
  55.     Driver      "nvidia"
  56.     VendorName  "NVIDIA"
  57.     BoardName   "nVidia Corporation GeForce MX440 SE"
  58.     Option      "CursorShadow" "on"
  59.     Option      "AllowGLXWithComposite" "on"
  60.     Option          "RandRRotation" "on"
  61.     Option      "RenderAccel" "on"
  62.     Option      "Coolbits" "1"
  63. EndSection
  64.  
  65. Section "Screen"
  66.     Identifier  "Screen0"
  67.     Device      "Videocard0"
  68.     Monitor     "Monitor0"
  69.     Option      "AddARGBGLXVisuals" "True"
  70.     Option      "DisableGLXRootClipping" "True"
  71.     DefaultDepth        24
  72.     DefaultColorDepth   24
  73.     SubSection "Display"
  74.         Viewport   0 0
  75.         Depth   4
  76.         Modes   "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
  77.     EndSubSection
  78.     SubSection "Display"
  79.         Viewport   0 0
  80.         Depth   8
  81.         Modes   "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
  82.     EndSubSection
  83.     SubSection "Display"
  84.         Viewport   0 0
  85.         Depth   15
  86.         Modes   "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
  87.     EndSubSection
  88.     SubSection "Display"
  89.         Viewport   0 0
  90.         Depth   16
  91.         Modes   "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
  92.     EndSubSection
  93.     SubSection "Display"
  94.         Viewport   0 0
  95.         Depth   24
  96.         Modes   "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
  97.     EndSubSection
  98. EndSection
  99.  
  100. Section "DRI"
  101.     Group        0
  102.     Mode         0666
  103. EndSection
  104.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement