diff options
author | Grant Emsley <[email protected]> | 2024-07-17 00:23:05 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-17 07:23:05 +0300 |
commit | 1f8a3a4c9a35dca0390b1d866dca508ef3ed23b2 (patch) | |
tree | fbdfe46d34089a5a45cbd6cbc65ea288117641cd /web | |
parent | ea285e3fec3335d3abe8bb19f4a60d37e3deb18d (diff) |
Proper manifest file for app mode (#174)
Filling in the name and adding start_url will make browsers offer to install PiKVM as an application, including adding shortcuts to the start menu and everything. This runs it in app mode just like the instructions for running chrome with the --app flag.
Requires a valid SSL certificate be setup before browsers will show the option.
Diffstat (limited to 'web')
-rw-r--r-- | web/share/site.webmanifest | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/share/site.webmanifest b/web/share/site.webmanifest index 849f6a89..a1f95a9a 100644 --- a/web/share/site.webmanifest +++ b/web/share/site.webmanifest @@ -1,6 +1,7 @@ { - "name": "", - "short_name": "", + "name": "PiKVM", + "short_name": "PiKVM", + "start_url": "/", "icons": [ { "src": "/share/android-chrome-192x192.png", |