So I've already solved this problem, but it was so frustrating I wanted to make sure there was a post about it for people in the future.
The issue comes from Chrome OS's browser, because it does not support links that open apps in linux, such as vscode://
. On linux systems, such as the ubuntu container used to install linux apps on Chrome OS, opening links is handled by xdg-open
, which starts the browser/associated programs.
On Chrome OS however, this doesn't happen. Because it is not linux, and does not rely on the linux filesystem, the normal system for registering alternate URL protocol handlers does not function. This means that vscode://
and other such links don't work.
Solution
This is more of a workaround than a permanent solution, but will work:
Usage
It may not be immediately clear on exactly how to use
xdg-open
with your links, or even how to get links. I found this problem when logging into VSCode live share using microsoft. What you have to do is quite simple:Network
or equivalentContinue
xdg open
""
quotation marks around it, because they often contain the&
character, which is significant in bash.Explanation
It was a problem not well documented, because few people try to run VSCode on Chrome OS. The root of the problem, as I said, comes from the browser not being linked to anything else.
The heart of protocol handlers rests in this directory:
vsls-launcher.desktop
contains the data necessary forxdg-open
to launch vscode withvscode://
links.My first hints came from this reddit thread,
u/kgjv
's comment in particular: https://www.reddit.com/r/Crostini/comments/chizyk/crostini_how_to_make_linux_apps_open_links_in/It says how
xdg-open
will launch chrome from linux, so I did a little more digging and found~/.local/share/applications/
to contain the configuration.Any apps that support this will have their own
.desktop
s, so you need only copy the link and launch it with xdg open