Advertisement
shumkar

xorg.conf

Mar 16th, 2011
178
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/lib/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  "extmod"
  20.     Load  "record"
  21.     Load  "dbe"
  22.     Load  "glx"
  23.     Disable  "dri"
  24.     Disable  "dri2"
  25. EndSection
  26.  
  27. Section "InputClass"
  28.     Identifier      "synaptics touchpad catchall"
  29.     Driver          "synaptics"
  30.     MatchIsTouchpad     "on"
  31.     Option  "SHMConfig" "on"
  32.     Option  "VertTwoFingerScroll"   "on"
  33. EndSection
  34.  
  35. Section "InputClass"
  36.     Identifier      "mouse catchall"
  37.     Driver          "evdev"
  38.     MatchIsPointer      "on"
  39.     MatchDevicePath     "/dev/input/event*"
  40.     Option  "Protocol"  "auto"
  41.     Option  "ButtonMapping" "3 2 1"
  42. EndSection
  43.  
  44. Section "InputClass"
  45.     Identifier      "keyboard catchall"
  46.     Driver          "evdev"
  47.     MatchIsKeyboard     "on"
  48.     MatchDevicePath     "/dev/input/event*"
  49.     Option  "XkbModel"  "pc105"
  50.     Option  "XkbLayout" "us,ru(winkeys)"
  51.     Option  "XkbOptions"    "grp:ctrl_shift_toggle,terminate:ctrl_alt_bksp"
  52. EndSection
  53.  
  54. Section "InputDevice"
  55.     Identifier      "Keyboard0"
  56.     Driver          "evdev"
  57.     Option  "XkbModel"  "pc105"
  58.     Option  "XkbLayout" "us,ru(winkeys)"
  59.     Option  "XkbOptions"    "grp:ctrl_shift_toggle,terminate:ctrl_alt_bksp"
  60. EndSection
  61.  
  62. Section "InputDevice"
  63.     Identifier  "Mouse0"
  64.     Driver      "mouse"
  65.     Option      "Protocol" "auto"
  66.     Option      "Device" "/dev/input/mice"
  67.     Option      "ZAxisMapping" "4 5 6 7"
  68. EndSection
  69.  
  70. Section "Monitor"
  71.     Identifier   "Monitor0"
  72.     VendorName   "Monitor Vendor"
  73.     ModelName    "Monitor Model"
  74. EndSection
  75.  
  76. Section "Device"
  77.     Identifier  "Card0"
  78.     Driver      "nvidia"
  79.     BusID       "PCI:1:0:0"
  80. EndSection
  81.  
  82. Section "Screen"
  83.     Identifier "Screen0"
  84.     Device     "Card0"
  85.     Monitor    "Monitor0"
  86.     SubSection "Display"
  87.         Viewport   0 0
  88.         Depth     1
  89.     EndSubSection
  90.     SubSection "Display"
  91.         Viewport   0 0
  92.         Depth     4
  93.     EndSubSection
  94.     SubSection "Display"
  95.         Viewport   0 0
  96.         Depth     8
  97.     EndSubSection
  98.     SubSection "Display"
  99.         Viewport   0 0
  100.         Depth     15
  101.     EndSubSection
  102.     SubSection "Display"
  103.         Viewport   0 0
  104.         Depth     16
  105.     EndSubSection
  106.     SubSection "Display"
  107.         Viewport   0 0
  108.         Depth     24
  109.     EndSubSection
  110. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement