🌐
WSLからxdg-openでWindowsの既定ブラウザを開けるようにする
mkdir -p ~/.local/share/applications
cat << EOS > ~/.local/share/applications/file-protocol-handler.desktop
[Desktop Entry]
Type=Application
Version=1.0
Name=File Protocol Handler
NoDisplay=true
Exec=rundll32.exe url.dll,FileProtocolHandler
EOS
xdg-settings set default-web-browser file-protocol-handler.desktop
参考
Discussion