e494eab608
Configure wasp using a central toml file Signed-off-by: Adam Blair <adampblair@protonmail.com>
22 lines
573 B
Python
22 lines
573 B
Python
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# Copyright (C) 2020 Daniel Thompson
|
|
"""Shared manifest for applications that work well on a 240x240 display."""
|
|
|
|
manifest = (
|
|
'apps/system/launcher.py',
|
|
'apps/system/pager.py',
|
|
'apps/system/software.py',
|
|
'apps/system/settings.py',
|
|
'apps/system/step_counter.py',
|
|
'fonts/__init__.py',
|
|
'fonts/clock.py',
|
|
'fonts/clock_dual.py',
|
|
'fonts/sans18.py',
|
|
'fonts/sans24.py',
|
|
'fonts/sans28.py',
|
|
'fonts/sans36.py',
|
|
'icons.py',
|
|
'widgets.py',
|
|
'steplogger.py',
|
|
'appregistry.py',
|
|
)
|