2020-10-10 15:04:44 +02:00
|
|
|
# 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/clock.py',
|
|
|
|
'apps/flashlight.py',
|
|
|
|
'apps/gameoflife.py',
|
|
|
|
'apps/haiku.py',
|
|
|
|
'apps/heart.py',
|
2020-10-22 17:59:17 +02:00
|
|
|
'apps/musicplayer.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'apps/launcher.py',
|
|
|
|
'apps/pager.py',
|
|
|
|
'apps/settings.py',
|
|
|
|
'apps/steps.py',
|
|
|
|
'apps/stopwatch.py',
|
|
|
|
'apps/fibonacci_clock.py',
|
|
|
|
'apps/testapp.py',
|
|
|
|
'fonts/__init__.py',
|
|
|
|
'fonts/clock.py',
|
|
|
|
'fonts/sans24.py',
|
|
|
|
'fonts/sans28.py',
|
|
|
|
'fonts/sans36.py',
|
|
|
|
'icons.py',
|
|
|
|
'widgets.py',
|
|
|
|
)
|