Closed issue by EdoardoLaGreca on void-packages repository https://github.com/void-linux/void-packages/issues/37202 Description: Code OSS (package `vscode`) is not able to sign-in using Github because of a missing URL handler. The URL handler in question is provided by a file in `/usr/share/applications` called `code-oss-url-handler.desktop`. I got that file from the [respective Arch Linux package](https://archlinux.org/packages/community/x86_64/code/) but it is provided from the official repo as well (see [this file](https://github.com/microsoft/vscode/blob/main/resources/linux/code-url-handler.desktop)). Other than that, it is necessary to set the default application for the specific MIME type using the command below ``` xdg-mime default code-oss-url-handler.desktop x-scheme-handler/code-oss ``` Thanks to @toluschr for [his comment](https://github.com/MicrosoftDocs/live-share/issues/3057#issuecomment-671072052) in a related issue.