mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-23 15:00:13 +00:00
26 lines
559 B
Plaintext
26 lines
559 B
Plaintext
|
App(
|
||
|
appid="Music_Beeper",
|
||
|
name="Music Beeper",
|
||
|
apptype=FlipperAppType.EXTERNAL,
|
||
|
entry_point="music_beeper_app",
|
||
|
cdefines=["APP_MUSIC_BEEPER"],
|
||
|
requires=[
|
||
|
"gui",
|
||
|
"dialogs",
|
||
|
],
|
||
|
provides=["music_beeper_start"],
|
||
|
stack_size=2 * 1024,
|
||
|
order=45,
|
||
|
fap_icon="music_10px.png",
|
||
|
fap_icon_assets="icons",
|
||
|
fap_category="Music_Extra",
|
||
|
)
|
||
|
|
||
|
App(
|
||
|
appid="music_beeper_start",
|
||
|
apptype=FlipperAppType.STARTUP,
|
||
|
entry_point="music_beeper_on_system_start",
|
||
|
requires=["music_beeper"],
|
||
|
order=30,
|
||
|
)
|