1 | # This xorg configuration file is meant to be used by xpra |
---|
2 | # to start a dummy X11 server. |
---|
3 | # For details, please see: |
---|
4 | # https://xpra.org/Xdummy.html |
---|
5 | |
---|
6 | Section "ServerFlags" |
---|
7 | Option "DontVTSwitch" "true" |
---|
8 | Option "AllowMouseOpenFail" "true" |
---|
9 | Option "PciForceNone" "true" |
---|
10 | Option "AutoEnableDevices" "false" |
---|
11 | Option "AutoAddDevices" "false" |
---|
12 | EndSection |
---|
13 | |
---|
14 | Section "Device" |
---|
15 | Identifier "dummy_videocard" |
---|
16 | Driver "dummy" |
---|
17 | DacSpeed 600 |
---|
18 | VideoRam 256000 |
---|
19 | EndSection |
---|
20 | |
---|
21 | Section "Monitor" |
---|
22 | Identifier "dummy_monitor" |
---|
23 | HorizSync 1.0 - 2000.0 |
---|
24 | VertRefresh 1.0 - 200.0 |
---|
25 | EndSection |
---|
26 | |
---|
27 | Section "Screen" |
---|
28 | Identifier "dummy_screen" |
---|
29 | Device "dummy_videocard" |
---|
30 | Monitor "dummy_monitor" |
---|
31 | DefaultDepth 30 |
---|
32 | SubSection "Display" |
---|
33 | Viewport 0 0 |
---|
34 | Depth 30 |
---|
35 | EndSubSection |
---|
36 | EndSection |
---|
37 | |
---|
38 | Section "ServerLayout" |
---|
39 | Identifier "dummy_layout" |
---|
40 | Screen "dummy_screen" |
---|
41 | EndSection |
---|