Added a shitty pong game

This commit is contained in:
deckensteuerung
2018-09-04 20:36:18 +02:00
parent 64dd67615f
commit 7c2a004009
2 changed files with 153 additions and 2 deletions

View File

@@ -13,15 +13,16 @@ NoDataTimeout = 20
LogLevel = logging.DEBUG
UseGui = True
GuiScaleFactor = 10
GuiScaleFactor = 20
WebHost = "localhost"
WebPort = 8000
# first app is always running in IDLE
Apps = [
{"guiname": "IDLE", "name": "pixelflut", "cmd": "apps/idle.py", "persistent": True},
{"guiname": "IDLE", "name": "pixelflut", "cmd": "apps/idle.py", "persistent": False},
{"guiname": "IDLE2", "name": "idlec", "cmd": "apps/idle2"},
{"guiname": "YoutubeDL", "name": "youtubedl", "cmd": "apps/youtubedl.sh"},
{"name": "pong", "cmd": "apps/pong.py"},
{"name": "framebuffer", "cmd": ["apps/fbcp", "/dev/fb0"]},
]