Skip to content

Commit

Permalink
More wip
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewWilkes committed May 31, 2022
1 parent bdb9988 commit ae6d0ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions modules/app_launcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def list_user_apps(self):

def list_core_apps(self):
core_app_info = [
("App store", "app_store", "Store"),
("USB Keyboard", "hid", "USBKeyboard"),
("Name Badge", "hello", "Hello"),
("Torch", "torch", "Torch"),
Expand Down
4 changes: 2 additions & 2 deletions modules/dashboard/resources/woezel_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def setPath(newPath="/cache/woezel"):
except:
pass

def _showProgress(msg, error=False, icon_wifi=False):
def showProgress(msg, error=False, icon_wifi=False):
term.header(True, "Installer")
print(msg)
icon = "/media/busy.png"
Expand All @@ -36,7 +36,7 @@ def _showProgress(msg, error=False, icon_wifi=False):
icon = "/media/wifi.png"
#easydraw.messageCentered(msg, False, icon)

def update():
def update(_showProgress=showProgress):
global path, categories, lastUpdate
if not wifi.status():
_showProgress("Connecting to WiFi...", False, True)
Expand Down

0 comments on commit ae6d0ed

Please sign in to comment.