xorg.conf 767 B

123456789101112131415161718192021222324252627282930
  1. Section "Monitor"
  2. Identifier "Dummy Monitor"
  3. # Default HorizSync 31.50 - 48.00 kHz
  4. HorizSync 5.0 - 150.0
  5. # Default VertRefresh 50.00 - 70.00 Hz
  6. VertRefresh 5.0 - 100.0
  7. # Taken from https://www.xpra.org/xorg.conf
  8. Modeline "1920x1080" 23.53 1920 1952 2040 2072 1080 1106 1108 1135
  9. Modeline "1280x720" 27.41 1280 1312 1416 1448 720 737 740 757
  10. EndSection
  11. Section "Device"
  12. Identifier "Dummy VideoCard"
  13. Driver "dummy"
  14. # Default VideoRam 4096
  15. # (1920 * 1080 * 4) / 1024 = 8100
  16. VideoRam 8100
  17. EndSection
  18. Section "Screen"
  19. Identifier "Dummy Screen"
  20. Device "Dummy VideoCard"
  21. Monitor "Dummy Monitor"
  22. SubSection "Display"
  23. Depth 24
  24. Modes "1920x1080" "1280x720"
  25. EndSubSection
  26. EndSection