From aa321965abfb181a33652f5e8d5e37a77d0c20c4 Mon Sep 17 00:00:00 2001 From: Jonathan Elias Caicedo Date: Fri, 30 Oct 2020 10:10:09 -0400 Subject: [PATCH] Update xorg.conf to support 1920x1080 @ 60 Hz This is already supported by the "Display" modes on line 81 - it seems to have just been missing the Modeline configuration. With that said, using this resolution will increase the necessary bandwidth and computing power required to run Neko - but users should at least have the ability to use full 1080p at 60hz refresh rate. --- .docker/files/base/xorg.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.docker/files/base/xorg.conf b/.docker/files/base/xorg.conf index c803041..eab523c 100644 --- a/.docker/files/base/xorg.conf +++ b/.docker/files/base/xorg.conf @@ -56,6 +56,8 @@ Section "Monitor" # 800x600 @ 60.00 Hz (GTF) hsync: 37.32 kHz; pclk: 38.22 MHz Modeline "800x600_60.00" 38.22 800 832 912 1024 600 601 604 622 -HSync +Vsync + # 1920x1080 @ 60.00 Hz (GTF) hsync: 67.08 kHz; pclk: 172.80 MHz + Modeline "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync +Vsync # 1920x1080 @ 30.00 Hz (GTF) hsync: 32.97 kHz; pclk: 80.18 MHz Modeline "1920x1080_30.00" 80.18 1920 1984 2176 2432 1080 1081 1084 1099 -HSync +Vsync # 1152x648 @ 30.00 Hz (GTF) hsync: 19.80 kHz; pclk: 26.93 MHz @@ -85,4 +87,4 @@ Section "ServerLayout" Screen "dummy_screen" InputDevice "dummy_mouse" InputDevice "dummy_keyboard" -EndSection \ No newline at end of file +EndSection