DEV Community

Cover image for GUI in GitHub Codespaces
Konstantinos Mazgaltzidis
Konstantinos Mazgaltzidis

Posted on

GUI in GitHub Codespaces

GitHub Codespaces with VNC Support

GitHub Codespaces offers developers an instant, cloud-based development environment with a plethora of tools and utilities, all accessible directly from your browser. While it's perfect for many development tasks such as command line tools, Docker, or NodeJS, certain tasks, like those involving OpenGL rendering or Java Swing necessitate a graphical interface, which Codespaces lacks. However, with the help of a tool called Light-weight Desktop (desktop-lite), we can overcome this limitation.

Setting Up VNC Support with Desktop-lite

To enable VNC support in Codespaces, follow these steps:

  1. Navigate to the option “Configure dev container” from the Codespaces dropdown menu.

Image description

  1. Replace the existing JSON configuration with the following:
{
  "image": "mcr.microsoft.com/devcontainers/universal:2",
  "features": {
    "ghcr.io/devcontainers/features/desktop-lite:1": {}
  },
  "forwardPorts": [6080],
  "portsAttributes": {
    "6080": {
      "label": "desktop"
    }
  }
}

Enter fullscreen mode Exit fullscreen mode
  1. Commit the changes and open the Codespaces environment. If prompted to rebuild the container to apply the changes, proceed with the rebuild.

Image description

  1. Click on the bottom icon labeled "Ports" and select the "Open in Browser" option.

Image description

  1. Use the default password vscode to connect.

Image description

  1. In the Settings, select the Scaling Mode to Remote Resizing for a better user experience.

Image description

  1. You can now navigate to your project path as seen in VS Code by using the command
cd /workspaces/<repo_name>

Enter fullscreen mode Exit fullscreen mode

Any changes made here will reflect in the VS Code environment seamlessly.

Top comments (0)