Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2013
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # /etc/X11/xorg.conf.d/keyboard.conf:
  2.  
  3. Section "InputClass"
  4.   Identifier  "keyboard"
  5.   Driver  "evdev"
  6.   Option  "Protocol" "event"
  7.   MatchIsKeyboard "1"
  8.   Option "XkbLayout" "us,ru"
  9.   Option "XkbOptions" "grp:caps_toggle,grp:switch,grp_led:caps,compose:ralt,terminate:ctrl_alt_bksp"
  10. EndSection
  11.  
  12. # /etc/X11/xorg.conf.d/touchpad.conf
  13.  
  14. Section "InputClass"
  15.   Identifier  "Synaptics"
  16.   Driver  "synaptics"
  17.   MatchIsTouchpad "1"
  18.   MatchProduct "Synaptics TouchPad"
  19.   Option "TapButton1" "1"
  20.   Option "TapButton2" "2"
  21.   Option "TapButton3" "3"
  22.   Option "VertTwoFingerScroll" "1"
  23.   Option "HorizTwoFingerScroll" "1"
  24. EndSection
  25.  
  26. # /etc/X11/xorg.conf
  27.  
  28. Section "ServerLayout"
  29.     Identifier "Main"
  30.     Screen     "HP Screen" 0 0
  31. EndSection
  32.  
  33. Section "ServerFlags"
  34.     Option      "Xinerama" "Off"
  35. EndSection
  36.  
  37. Section "Files"
  38.     ModulePath   "/usr/lib64/xorg/modules"
  39.     ModulePath   "/usr/lib64/opengl/xorg-x11/"
  40.     FontPath     "/usr/share/fonts/75dpi/"
  41.     FontPath     "/usr/share/fonts/100dpi/"
  42.     FontPath     "/usr/share/fonts/corefonts/"
  43.     FontPath     "/usr/share/fonts/cyrillic/"
  44.     FontPath     "/usr/share/fonts/dejavu/"
  45.     FontPath     "/usr/share/fonts/intlfonts/"                                                  
  46.     FontPath     "/usr/share/fonts/misc/"                                                        
  47.     FontPath     "/usr/share/fonts/tahoma/"                                                      
  48.     FontPath     "/usr/share/fonts/terminus/"                                                    
  49.     FontPath     "/usr/share/fonts/urw-fonts/"                                                  
  50. EndSection                                                                                      
  51.                                                                                                  
  52. Section "Module"                                                                                
  53.     Load       "glx"                                                                            
  54.     Load       "dri"
  55. EndSection
  56.  
  57. Section "Monitor"
  58.     Identifier "AUO 129e"
  59.     VendorName "AUO"
  60.     ModelName  "129e"
  61. EndSection
  62.  
  63. Section "Device"
  64.     Identifier "ATI Radeon HD6370M"
  65.     Driver     "fglrx"
  66.     BusID      "PCI:1:0:0"
  67.     Option     "BackingStore" "False"
  68.     Option     "TexturedVideo" "On"
  69.     Option     "UseEdidDpi" "False"
  70.     Option     "DPI" "96 x 96"
  71. EndSection
  72.  
  73. Section "Screen"
  74.     Identifier "HP Screen"
  75.     Device     "ATI Radeon HD6370M"
  76.     Monitor    "AUO 129e"
  77. EndSection
  78.  
  79. Section "DRI"
  80.     Group     "video"
  81.     Mode      0666
  82. EndSection
  83.  
  84. Section "Extensions"
  85.     Option    "Composite" "On"
  86. #    Option    "XVideo" "Disable"
  87. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement