diff --git a/apps/home/__init__.py b/apps/home/__init__.py index 4c6c2e8..7cd684b 100644 --- a/apps/home/__init__.py +++ b/apps/home/__init__.py @@ -9,7 +9,9 @@ def onLoad(s, a): app = a state = s welcomeText = pyos.GUI.Text((5, 5), "Welcome to Python OS 6.", state.getColorPalette().getColor("item"), 15) + tutorialText = pyos.GUI.Text((5, 20), "Tap the rectangles for your apps.", state.getColorPalette().getColor("item"), 15) app.ui.addChild(welcomeText) + app.ui.addChild(tutorialText) def onUnload(): state.getFunctionBar().container.backgroundColor = state.getColorPalette().getColor("background") @@ -26,4 +28,4 @@ def run(): state.getFunctionBar().app_title_text.color = inverse state.getFunctionBar().clock_text.color = inverse state.getFunctionBar().app_title_text.refresh() - state.getFunctionBar().clock_text.refresh() \ No newline at end of file + state.getFunctionBar().clock_text.refresh()