diff options
Diffstat (limited to 'system/X11/xorg.conf')
-rw-r--r-- | system/X11/xorg.conf | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/system/X11/xorg.conf b/system/X11/xorg.conf new file mode 100644 index 0000000..5160f3c --- /dev/null +++ b/system/X11/xorg.conf @@ -0,0 +1,37 @@ +Section "ServerLayout" + Identifier "layout" + Screen "intel" + #Inactive "intel" +EndSection + +Section "Module" + Load "dri3" +EndSection + +Section "Device" + Identifier "nvidia" + Driver "nvidia" + BusID "01:00:0" + Option "RegistryDwords" "EnableBrightnessControl=1" +EndSection + +Section "Screen" + Identifier "nvidia" + Device "nvidia" + Option "AllowEmptyInitialConfiguration" +EndSection + +Section "Device" + Identifier "intel" + Driver "modesetting" + Option "AccelMethod" "glamor" + Option "DRI" "3" + Option "TearFree" "true" + Option "SwapbuffersWait" "true" + Option "TripleBuffer" "true" +EndSection + +Section "Screen" + Identifier "intel" + Device "intel" +EndSection |