2023-09-24 21:36:57 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from modules import core
|
2025-05-25 19:37:19 +08:00
|
|
|
import os
|
|
|
|
os.system('Xvfb :1 -screen 0 1600x1200x16 &')
|
|
|
|
os.environ['DISPLAY'] = ':1.0'
|
2023-09-24 21:36:57 +08:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
core.run()
|