Initial commit

This commit is contained in:
deckensteuerung
2018-08-19 20:47:08 +02:00
commit bd84098ff4
4 changed files with 156 additions and 0 deletions

12
config.py Normal file
View File

@@ -0,0 +1,12 @@
#width
ScreenX = 24
#height
ScreenY = 40
# first app is always running in IDLE
Apps = [
{"name": "pixelflut", "cmd": "apps/idle.py", "permanent": True},
{"name": "framebuffer", "cmd": "apps/framebuffercp"},
{"name": "play_youtube", "cmd": "apps/play_youtube.sh"}
]