Sharing your screen on desktop Linux

I'm a developer, and sometimes I want to show something I'm making to my friends. Screen sharing on Linux sucks. It works pretty decently if the following two things are true:

  1. You have only one monitor.
  2. You are using X11.

But, given the productivity boost felt when given extra screen real-estate, it's not hard to imagine that a vast portion of developers have multiple monitors. Plus, I really want to use Wayland, but due to the difficulty in screen sharing and a bunch of other problems, I can't retain the same workflows under a different display server.

Discord

When I'm talking to my friends, I'm (unforunately) using Discord. For those who don't know, Discord is a bloated chat-and-voice application for Gamers™, and is where we begin simply because of how popular it is.

Discord added screen sharing functionality back in October 2018. It works amazingly well (even for low-latency, high-framerate things like games) as long as you're using Windows.

Linux is so low-priority for Discord that a bug where Discord wouldn't start for every Linux user still managed to find its way to the stable branch of the application. Even right now, my Discord client randomly segfaults on several of my Arch installs.

Anyway, for screen sharing on Linux, we find that it works but we can't separate our two monitors:

A screenshot of Discord's screen sharing interface. An exceptionally wide panel called 'Entire screen' is shown, which is actually two 1920x1080 screens joined together.

This will become a running theme, as Discord's electron client is using Chromium's display capture API here.

Jitsi Meet

My next port-of-call for collaboration is Jitsi Meet. This is an open-source, free video conferencing tool. It requires no account, and is almost perfect.

Except: Both Firefox and Chrome suffer from the same issue when trying to screenshare from a multi-head setup on Linux. They do not have the XRandR integration that allows you to choose an individual monitor, despite having the same functionality on other operating systems.

This is such a shame, but it pretty much discounts the entire landscape of web-based collaboration sites with screen sharing support.

A screenshot showing the same 'Entire screen' behaviour on Firefox

A screenshot showing the same 'Entire screen' behaviour on Chrome

A Solution

When I want to show something, I can either:

So, I use OBS (which actually has third-party support for wlroots if you're on Wayland) and stream to my own RTMP server.

However, nginx-rtmp lets anyone stream to any endpoint by default. With a tiny Flask application and a bit of configuration, we get that out of the way.

Secondly, latency: RTMP is not designed for a low-latency environment like screen-share collaboration. Plus, its roots are pretty shaky - Macromedia's Flash-to-server video streaming is not really what we want.

Finally, convenience: To watch my screen, viewers have to open a video client, and point it at my RTMP URL. This is way more friction than just looking at the chat application that's already open. Plus, most RTMP players have built-in delay, so we resort to weird ffplay -nobuffer commands to get the latency down. This is really terrible ergonomics.

I have a few ideas to make the situation better:

This is a plea to chat platforms and browser developers to improve the situation on Linux.