Advertisement
Guest User

Untitled

a guest
Feb 5th, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerFlags"
  2.     Option "IgnoreABI" "1"
  3. EndSection
  4.  
  5. Section "ServerLayout"
  6.     Identifier  "default_layout_laptop"
  7.     Option      "AllowNVIDIAGPUScreens"
  8.     Screen 0    "Screen0"
  9. EndSection
  10.  
  11. Section "Screen"
  12.     Identifier  "Screen0"
  13.     Device      "intelgpu"
  14.     Monitor     "integratedmonitor"
  15. EndSection
  16.  
  17. Section "Monitor"
  18.     Identifier  "integratedmonitor"
  19.     VendorName  "MSI Integrated Monitor"
  20.     ModelName   "MSI 15-inch Monitor"
  21. EndSection
  22.  
  23. # nVidia dGPU config
  24. Section "Device"
  25.     Identifier  "nvidiagpu"
  26.     Driver      "nvidia"
  27.     BusID       "PCI:1:0:0"
  28.     Option      "AllowEmptyInitialConfiguration"
  29. EndSection
  30.  
  31. # Intel iGPU config
  32. Section "Device"
  33.     Identifier  "intelgpu"
  34.     Driver      "modesetting"
  35.     BusID       "PCI:0:2:0"
  36. EndSection
  37.  
  38. # Config file for kb/m input
  39. Section "InputClass"
  40.     Identifier  "builtin_touchpad"
  41.     Driver      "libinput"
  42.     MatchIsTouchpad "on"
  43.     Option      "Tapping"       "on"
  44.     Option      "TappingButtonMap"  "lrm"
  45.     Option      "TappingDrag"       "false"
  46.     Option      "DisableWhileTyping"    "true"
  47.     Option      "HorizontalScrolling"   "true"
  48.     Option      "NaturalScrolling"  "true"
  49. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement