-
Hello everyone. Thanks for any help |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
And this is how it looks when opening with Chrome: How can I force it to show always this way? |
Beta Was this translation helpful? Give feedback.
-
Hmm... I think you'd have to modify code-server's source code. IIRC, this is related to the PWA settings and is called I think it is here: https://github.com/microsoft/vscode/blob/74b1f979648cc44d385a2286793c226e611f59e7/resources/server/manifest.json#L6 and these are the valid options: https://superpwa.com/doc/web-app-manifest-display-modes/ Note: you'd either have to edit this directly on your device where code-server is installed or fork, edit, recompile and download again on your device. |
Beta Was this translation helpful? Give feedback.
-
Ok, thanks |
Beta Was this translation helpful? Give feedback.
Hmm... I think you'd have to modify code-server's source code. IIRC, this is related to the PWA settings and is called
fullscreen
which hides the address bar when running as a PWA.I think it is here: https://github.com/microsoft/vscode/blob/74b1f979648cc44d385a2286793c226e611f59e7/resources/server/manifest.json#L6
and these are the valid options: https://superpwa.com/doc/web-app-manifest-display-modes/
Note: you'd either have to edit this directly on your device where code-server is installed or fork, edit, recompile and download again on your device.