-
Notifications
You must be signed in to change notification settings - Fork 5
/
xorg.conf
42 lines (37 loc) · 924 Bytes
/
xorg.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "IGPU" 0 0
# Option "AllowNVIDIAGPUScreens"
EndSection
Section "Module"
Load "modesetting"
EndSection
Section "Device"
Identifier "INTEL"
Driver "modesetting"
VendorName "Intel Corporation"
BusID "PCI:Intel_BusID"
EndSection
Section "Device"
Identifier "NVIDIA"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BusID "PCI:Nvidia_BusID"
EndSection
Section "Screen"
Identifier "IGPU"
Device "INTEL"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "DGPU"
Device "NVIDIA"
DefaultDepth 24
Option "AllowEmptyInitialConfiguration"
SubSection "Display"
Depth 24
EndSubSection
EndSection