Advertisement
XJDHDR

xpra config file

Mar 31st, 2019
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  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 "AllowEmptyInput" "true"
  11. Option "AutoEnableDevices" "false"
  12. Option "AutoAddDevices" "false"
  13. EndSection
  14.  
  15. Section "Device"
  16. Identifier "dummy_videocard"
  17. Driver "dummy"
  18. DacSpeed 600
  19. Option "ConstantDPI" "true"
  20. #VideoRam 2048000
  21. #VideoRam 1024000
  22. #VideoRam 384000
  23. VideoRam 256000
  24. #VideoRam 192000
  25. EndSection
  26.  
  27. Section "Monitor"
  28. Identifier "dummy_monitor"
  29. HorizSync 1.0 - 2000.0
  30. VertRefresh 1.0 - 200.0
  31. #To add your own modes here, use a modeline calculator, like:
  32. # cvt:
  33. # http://www.x.org/archive/X11R7.5/doc/man/man1/cvt.1.html
  34. # xtiming:
  35. # http://xtiming.sourceforge.net/cgi-bin/xtiming.pl
  36. # gtf:
  37. # http://gtf.sourceforge.net/
  38.  
  39. #This can be used to get a specific DPI, but only for the default resolution:
  40. #DisplaySize 508 317
  41. #NOTE: the highest modes will not work without increasing the VideoRam
  42. # for the dummy video card.
  43. Modeline "8192x4096" 193.35 8192 8224 8952 8984 4096 4196 4200 4301
  44. <snip long sequence of "Modeline" lines>
  45.  
  46. EndSection
  47.  
  48. Section "Screen"
  49. Identifier "dummy_screen"
  50. Device "dummy_videocard"
  51. Monitor "dummy_monitor"
  52. DefaultDepth 24
  53. SubSection "Display"
  54. Viewport 0 0
  55. Depth 8
  56. #requires more ram:
  57. #Modes "16000x15000" "15000x15000" "16384x8192" ..
  58. Modes "8192x4096" "5120x3200" "3840x2880" "3840x2560" "3840x2048" "3840x2160" "2048x2048" "2560x1600" "1920x1440" "1920x1200" "1920x108$
  59. #Virtual 16384 16384
  60. Virtual 8192 4096
  61. EndSubSection
  62. SubSection "Display"
  63. Viewport 0 0
  64. Depth 16
  65. #requires more ram:
  66. #Modes "16000x15000" "15000x15000" "16384x8192" ..
  67. Modes "8192x4096" "5120x3200" "3840x2880" "3840x2560" "3840x2048" "3840x2160" "2048x2048" "2560x1600" "1920x1440" "1920x1200" "1920x108$
  68. #Virtual 16384 16384
  69. Virtual 8192 4096
  70. EndSubSection
  71. SubSection "Display"
  72. Viewport 0 0
  73. Depth 24
  74. #requires more ram:
  75. #Modes "16000x15000" "15000x15000" "16384x8192" ..
  76. Modes "8192x4096" "5120x3200" "3840x2880" "3840x2560" "3840x2048" "3840x2160" "2048x2048" "2560x1600" "1920x1440" "1920x1200" "1920x108$
  77. #Virtual 16384 16384
  78. Virtual 8192 4096
  79. EndSubSection
  80. SubSection "Display"
  81. Viewport 0 0
  82. Depth 30
  83. #requires more ram:
  84. #Modes "16000x15000" "15000x15000" "16384x8192" ..
  85. Modes "8192x4096" "5120x3200" "3840x2880" "3840x2560" "3840x2048" "3840x2160" "2048x2048" "2560x1600" "1920x1440" "1920x1200" "1920x108$
  86. #Virtual 16384 16384
  87. Virtual 8192 4096
  88. EndSubSection
  89. EndSection
  90.  
  91. Section "ServerLayout"
  92. Identifier "dummy_layout"
  93. Screen "dummy_screen"
  94. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement