Replies: 3 comments 3 replies
-
I don't know if you can directly access PWAs during the command line, but if you can, don't question me! I use Windows with just launching my browser and visiting the server from my Linux machines. |
Beta Was this translation helpful? Give feedback.
-
Have you tried something like this? |
Beta Was this translation helpful? Give feedback.
-
One possible solution is to pass the full URL with Still, it's something.
|
Beta Was this translation helpful? Give feedback.
-
Hello! My setup is a docker container running on my local machine (Fedora 35), with the PWA installed locally via the Flatpak version of Chromium.
What I'm trying to accomplish is being able to type
code-server .
in a folder on my local machine and have it open an instance of the PWA starting in that folder, much likecode .
would with VSCode.The remote folders are mapped to local folders in
docker-compose.yaml
usingvolumes:
so it would be easy to make that translation and pass the correct folder name from code-server's perspective. What I can't figure out is how to run the flatpak command and pass thefolder
query parameter to Chromium.The command that the
.desktop
file executes:I tried
--extra-search-query-params
but that doesn't seem to work (I think it's a debugging tool for adding query parameters only to search queries).I can run it with the URL directly, like:
... but that opens in the Chromium browser as a tab, instead of launching the installed PWA version.
Any ideas? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions