From b8c97d14ed81871eef51ba7253982c45258ec538 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 30 Oct 2022 10:06:47 -0400 Subject: Add obs role --- roles/obs/tasks/xorg.conf | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 roles/obs/tasks/xorg.conf (limited to 'roles/obs/tasks/xorg.conf') diff --git a/roles/obs/tasks/xorg.conf b/roles/obs/tasks/xorg.conf new file mode 100644 index 0000000..1975093 --- /dev/null +++ b/roles/obs/tasks/xorg.conf @@ -0,0 +1,33 @@ +# This xorg configuration file is meant to be used +# to start a dummy X11 server. +# For details, please see: +# https://www.xpra.org/xorg.conf + +# Here we setup a Virtual Display of 1920x1080 pixels + +Section "Device" + Identifier "Configured Video Device" + Driver "dummy" + #VideoRam 4096000 + VideoRam 256000 + #VideoRam 16384 +EndSection + +Section "Monitor" + Identifier "Configured Monitor" + HorizSync 5.0 - 1000.0 + VertRefresh 5.0 - 200.0 + Modeline "1280x720_60.00" 74.48 1280 1336 1472 1664 720 721 724 746 -HSync +Vsync +EndSection + +Section "Screen" + Identifier "Default Screen" + Monitor "Configured Monitor" + Device "Configured Video Device" + DefaultDepth 24 + SubSection "Display" + Viewport 0 0 + Depth 24 + Virtual 1280 720 + EndSubSection +EndSection \ No newline at end of file -- cgit v1.2.3