Advertisement
shumkar

corrected xorg.conf

Mar 17th, 2011
149
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. EndSection
  5.  
  6. Section "Files"
  7.     ModulePath   "/usr/lib/xorg/modules"
  8.     FontPath     "/usr/share/fonts/misc/"
  9.     FontPath     "/usr/share/fonts/TTF/"
  10.     FontPath     "/usr/share/fonts/OTF/"
  11.     FontPath     "/usr/share/fonts/Type1/"
  12.     FontPath     "/usr/share/fonts/100dpi/"
  13.     FontPath     "/usr/share/fonts/75dpi/"
  14. EndSection
  15.  
  16. Section "Module"
  17.     Load  "extmod"
  18.     Load  "record"
  19.     Load  "dbe"
  20.     Load  "glx"
  21.     Disable  "dri"
  22.     Disable  "dri2"
  23. EndSection
  24.  
  25. Section "InputClass"
  26.     Identifier      "synaptics touchpad catchall"
  27.     Driver          "synaptics"
  28.     MatchIsTouchpad     "on"
  29.     Option  "SHMConfig" "on"
  30.     Option  "VertTwoFingerScroll"   "on"
  31. EndSection
  32.  
  33. Section "InputClass"
  34.     Identifier      "mouse catchall"
  35.     Driver          "evdev"
  36.     MatchIsPointer      "on"
  37.     MatchDevicePath     "/dev/input/event*"
  38.     Option  "Protocol"  "auto"
  39.     Option  "ButtonMapping" "1 2 3"
  40. EndSection
  41.  
  42. Section "InputClass"
  43.     Identifier      "keyboard catchall"
  44.     Driver          "evdev"
  45.     MatchIsKeyboard     "on"
  46.     MatchDevicePath     "/dev/input/event*"
  47.     Option  "XkbModel"  "pc105"
  48.     Option  "XkbLayout" "us,ru(winkeys)"
  49.     Option  "XkbOptions"    "grp:ctrl_shift_toggle,terminate:ctrl_alt_bksp"
  50. EndSection
  51.  
  52. Section "Monitor"
  53.     Identifier   "Monitor0"
  54.     VendorName   "Monitor Vendor"
  55.     ModelName    "Monitor Model"
  56. EndSection
  57.  
  58. Section "Device"
  59.     Identifier  "Card0"
  60.     Driver      "nvidia"
  61.     BusID       "PCI:1:0:0"
  62. EndSection
  63.  
  64. Section "Screen"
  65.     Identifier "Screen0"
  66.     Device     "Card0"
  67.     Monitor    "Monitor0"
  68.     SubSection "Display"
  69.         Viewport   0 0
  70.         Depth     1
  71.     EndSubSection
  72.     SubSection "Display"
  73.         Viewport   0 0
  74.         Depth     4
  75.     EndSubSection
  76.     SubSection "Display"
  77.         Viewport   0 0
  78.         Depth     8
  79.     EndSubSection
  80.     SubSection "Display"
  81.         Viewport   0 0
  82.         Depth     15
  83.     EndSubSection
  84.     SubSection "Display"
  85.         Viewport   0 0
  86.         Depth     16
  87.     EndSubSection
  88.     SubSection "Display"
  89.         Viewport   0 0
  90.         Depth     24
  91.     EndSubSection
  92. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement