18 lines
295 B
Python
Executable File
18 lines
295 B
Python
Executable File
#! /usr/bin/python3
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
sys.path.append(os.path.abspath(os.path.dirname(__file__)))
|
|
from xvfbwrapper import Xvfb
|
|
|
|
vdisplay = Xvfb()
|
|
vdisplay.start()
|
|
|
|
subprocess.run(['kasumi-unicode', '--help'])
|
|
# launch stuff inside
|
|
# virtual display here.
|
|
|
|
vdisplay.stop()
|
|
|