1# xorg.conf for Xdummy, to test dspdfviewer
2#
3# inspired by http://xpra.org/xorg.conf
4
5Section "ServerFlags"
6	Option "DontVTSwitch" "true"
7	Option "AllowMouseOpenFail" "true"
8	Option "PciForceNone" "true"
9	Option "AutoEnableDevices" "false"
10	Option "AutoAddDevices" "false"
11EndSection
12
13Section "Module"
14	Disable "glx"
15	Disable "dri"
16	Disable "dri2"
17	Disable "dbe"
18	Disable "record"
19	SubSection "extmod"
20		Option "omit XFree86-DGA"
21	EndSubSection
22EndSection
23
24Section "InputDevice"
25Identifier "dummy_mouse"
26	Option "CorePointer" "true"
27	Driver "void"
28EndSection
29
30Section "InputDevice"
31	Identifier "dummy_keyboard"
32	Option "CoreKeyboard" "true"
33	Driver "void"
34EndSection
35
36Section "Device"
37	Identifier "dummy_videocard"
38	Driver "dummy"
39	Option "ConstantDPI" "true"
40	VideoRam 192000
41EndSection
42
43Section "Monitor"
44	Identifier "internal_monitor"
45	HorizSync 5.0 - 1000.0
46	VertRefresh 58.0 - 62.0
47	Option "PreferredMode" "1920x1080"
48
49	# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
50	Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
51EndSection
52
53Section "Monitor"
54	Identifier "external_monitor"
55	Option "RightOf" "internal_monitor"
56	HorizSync 5.0 - 1000.0
57	VertRefresh 58.0 - 62.0
58
59	Option "PreferredMode" "1920x1200"
60
61	# 1920x1200 59.88 Hz (CVT 2.30MA) hsync: 74.56 kHz; pclk: 193.25 MHz
62	Modeline "1920x1200_60.00"  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync
63EndSection
64
65Section "Screen"
66	Identifier "internal_screen"
67	Device "dummy_videocard"
68	Monitor "internal_monitor"
69	DefaultDepth 24
70	SubSection "Display"
71		Modes	"1920x1080_60.00"
72		Depth	24
73	EndSubSection
74EndSection
75
76Section "Screen"
77	Identifier "external_screen"
78	Device "dummy_videocard"
79	Monitor "external_monitor"
80	DefaultDepth 24
81	SubSection "Display"
82		Modes	"1920x1200_60.00"
83		Depth	24
84	EndSubSection
85EndSection
86
87Section "ServerLayout"
88	Identifier "TheLayout"
89	Screen 0 "internal_screen"
90	Screen 1 "external_screen" RightOf "internal_screen"
91	InputDevice "dummy_mouse"
92	InputDevice "dummy_keyboard"
93EndSection
94