forked from wasp-os/wasp-os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwasp.toml
39 lines (29 loc) · 753 Bytes
/
wasp.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# The default build for wasp-os. Modify to customize your own build.
# At least one watch face must be specified. Quick ring apps will be added in order.
[[app]]
file = 'apps/stopwatch.py'
quick_ring = true
[[app]]
file = 'apps/heart.py'
quick_ring = true
[[app]]
file = 'apps/alarm.py'
auto_load = true
[[app]]
file = 'apps/timer.py'
auto_load = true
[[app]]
file = 'apps/calculator.py'
[[app]]
file = 'apps/disa_b_l_e.py'
[[app]] # If only one watch face is included this app can be removed
file = 'apps/faces.py'
auto_load = true
no_except = true
[[watchface]]
file = 'watch_faces/clock.py'
[[watchface]] # Requires ClockApp to also be installed
file = 'watch_faces/week_clock.py'
default = true
[[watchface]]
file = 'watch_faces/chrono.py'