summaryrefslogtreecommitdiffstats
path: root/roles/obs/tasks/xorg.conf
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2022-10-30 10:06:47 -0400
committerSacha Chua <sacha@sachachua.com>2022-10-30 10:06:47 -0400
commitb8c97d14ed81871eef51ba7253982c45258ec538 (patch)
treeb9e6252349df072aca9b6ff66ca0cf000f7c9cc2 /roles/obs/tasks/xorg.conf
parenta1e9bd2ba2cabd37a298c4ed951dfe2344bd750f (diff)
downloademacsconf-ansible-b8c97d14ed81871eef51ba7253982c45258ec538.tar.xz
emacsconf-ansible-b8c97d14ed81871eef51ba7253982c45258ec538.zip
Add obs role
Diffstat (limited to 'roles/obs/tasks/xorg.conf')
-rw-r--r--roles/obs/tasks/xorg.conf33
1 files changed, 33 insertions, 0 deletions
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