Improve startup messages

This commit is contained in:
Taylor Helsper 2021-10-23 19:54:17 -05:00
parent 1e8d176eb0
commit 8e91dfae82
2 changed files with 7 additions and 4 deletions

View File

@ -241,10 +241,13 @@
"name": "Balance of Satoshis",
"short_name": "bos",
"requires_lightning": true,
"app_tile_default_status_text": "Lightning Tool",
"app_tile_default_status_text": "Lightning Utility",
"app_tile_button_href": "/bos",
"app_tile_button_text": "Info",
"can_uninstall": true,
"can_enable_disable": false,
"show_on_homepage": false
"show_on_homepage": true,
"homepage_order": 42
},
{
"name": "Web SSH",

View File

@ -216,8 +216,8 @@ def index():
elif status == STATE_DRIVE_MOUNTED:
templateData = {
"title": "myNode Drive Mounted",
"header_text": "Drive Mounted",
"subheader_text": "myNode starting soon...",
"header_text": "Starting...",
"subheader_text": "Drive Mounted",
"ui_settings": read_ui_settings()
}
return render_template('state.html', **templateData)