Added persistent apps

This commit is contained in:
a_voel02
2018-08-26 20:31:48 +02:00
parent 480f856913
commit 5e4c5bc24a
2 changed files with 27 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
import logging
#width
ScreenX = 80
ScreenX = 24
#height
ScreenY = 40
@@ -13,14 +13,14 @@ NoDataTimeout = 20
LogLevel = logging.DEBUG
UseGui = True
GuiScaleFactor = 5
GuiScaleFactor = 10
WebHost = "localhost"
WebPort = 8000
# first app is always running in IDLE
Apps = [
{"name": "pixelflut", "cmd": "apps/idle.py", "permanent": True},
{"name": "pixelflut", "cmd": "apps/idle.py", "persistent": True},
{"name": "framebuffer", "cmd": ["apps/fbcp", "/dev/fb0"]},
{"name": "fdtd", "cmd": "apps/main"},
{"name": "play_youtube", "cmd": "apps/play_youtube.sh"}