()
| 81 | |
| 82 | |
| 83 | def start_display_screen() -> None: |
| 84 | cmd = "/usr/bin/Xvfb" |
| 85 | args = f"{os.getenv(ENV.DISPLAY)} " \ |
| 86 | f"-screen {os.getenv(ENV.SCREEN_NUMBER)} " \ |
| 87 | f"{os.getenv(ENV.SCREEN_WIDTH)}x" \ |
| 88 | f"{os.getenv(ENV.SCREEN_HEIGHT)}x" \ |
| 89 | f"{os.getenv(ENV.SCREEN_DEPTH)}" |
| 90 | d_screen = Application("d_screen", cmd, args, False) |
| 91 | d_screen.start() |
| 92 | |
| 93 | |
| 94 | def start_display_wm() -> None: |
no test coverage detected