Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.16 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier     "layout"
  3.     Screen          0 "nvidia"
  4.     Inactive        "intel"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6.     InputDevice    "Mouse0" "CorePointer"
  7. EndSection
  8.  
  9. Section "InputDevice"
  10.     Identifier     "Keyboard0"
  11.     Driver         "keyboard"
  12. EndSection
  13.  
  14. Section "InputDevice"
  15.     Identifier     "Mouse0"
  16.     Driver         "mouse"
  17.     Option         "Protocol" "auto"
  18.     Option         "Device" "/dev/input/mice"
  19.     Option         "Emulate3Buttons" "no"
  20.     Option         "ZAxisMapping" "4 5"
  21. EndSection
  22.  
  23. Section "Device"
  24.     Identifier     "intel"
  25.     Driver         "intel"
  26.     BusID          "PCI:00:02:0"
  27. EndSection
  28.  
  29. Section "Screen"
  30.     Identifier     "intel"
  31.     Device         "intel"
  32. EndSection
  33.  
  34. Section "Device"
  35.     Option         "UseDisplayDevice" "none"
  36.     Identifier     "nvidia"
  37.     Driver         "nvidia"
  38.     BusID          "PCI:01:00:0"
  39. EndSection
  40.  
  41. Section "Screen"
  42.     Identifier     "nvidia"
  43.     Device         "nvidia"
  44.     Option         "AllowEmptyInitialConfiguration"
  45.     SubSection     "Display"
  46.         Modes      "nvidia-auto-select"
  47.     EndSubSection
  48. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement