Advertisement
Guest User

xorg.conf

a guest
Oct 10th, 2019
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.         Identifier     "layout"
  3.         Option         "AllowNVIDIAGPUScreens"
  4.         Screen      0  "iGPU" 0 0
  5. EndSection
  6.  
  7. Section "Files"
  8.     ModulePath   "/usr/lib/x86_64-linux-gnu/nvidia/xorg"
  9.         ModulePath   "/usr/lib/xorg/modules"
  10.         FontPath     "/usr/share/fonts/X11/misc"
  11.         FontPath     "/usr/share/fonts/X11/cyrillic"
  12.         FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  13.         FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  14.         FontPath     "/usr/share/fonts/X11/Type1"
  15.         FontPath     "/usr/share/fonts/X11/100dpi"
  16.         FontPath     "/usr/share/fonts/X11/75dpi"
  17.         FontPath     "built-ins"
  18. EndSection
  19.  
  20. Section "Device"
  21.         Identifier  "iGPU"
  22.         Driver      "modesetting"
  23.         BusID       "PCI:0:2:0"
  24. EndSection
  25.  
  26. Section "Screen"
  27.         Identifier "iGPU"
  28.         Device     "iGPU"
  29.     DefaultDepth 24
  30.         SubSection "Display"
  31.                 Viewport   0 0
  32.         EndSubSection
  33. EndSection
  34.  
  35. Section "Device"
  36.         Identifier  "dGPU"
  37.         Driver      "nvidia"
  38.         BusID       "PCI:3:0:0"
  39. EndSection
  40.  
  41. Section "OutputClass"
  42.     Identifier   "iGPU"
  43.     MatchDriver  "i915"
  44.     Driver       "modesetting"
  45. EndSection
  46.  
  47. Section "OutputClass"
  48.     Identifier   "dGPU"
  49.     MatchDriver  "nvidia-drm"
  50.     Driver       "nvidia"
  51.     Option       "AllowEmptyInitialConfiguration"
  52.     Option       "PrimaryGPU" "Yes"
  53.     ModulePath   "/usr/lib/x86_64-linux-gnu/nvidia/xorg"
  54.     ModulePath   "/usr/lib/xorg/modules"
  55. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement