feat: Enable screen share request handler and add screen picker calls

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>
This commit is contained in:
Jacob Schlecht 2026-04-13 23:37:43 -06:00
parent 3ff2cd0e5a
commit 1065f23636
2 changed files with 51 additions and 0 deletions

View File

@ -5,8 +5,10 @@ import {
Menu,
MenuItem,
app,
desktopCapturer,
ipcMain,
nativeImage,
session,
} from "electron";
import windowIconAsset from "../../assets/desktop/icon.png?asset";
@ -187,6 +189,43 @@ export function createMainWindow() {
}
});
// Create display media request handler
session.defaultSession.setDisplayMediaRequestHandler(
(request, callback) => {
desktopCapturer
.getSources({ types: ["screen", "window"] })
.then((sources) => {
// Shortcut for linux wayland.
if (sources.length == 1) {
// TODO: Get audio to work with wayland
// See vencord for an implementation using a virtual microphone.
callback({
video: sources[0],
audio: request.audioRequested ? "loopback" : undefined,
});
return;
}
mainWindow.webContents.send(
"screenPicker",
sources.map((source, idx) => {
return { idx: idx, name: source.name };
}),
(idx: number, audio: boolean) => {
if (idx < 0 || idx > sources.length) {
callback({});
} else {
callback({
video: sources[idx],
audio: audio ? "loopback" : undefined,
});
}
},
);
});
},
{ useSystemPicker: true },
);
// push world events to the window
ipcMain.on("minimise", () => mainWindow.minimize());
ipcMain.on("maximise", () =>

View File

@ -15,4 +15,16 @@ contextBridge.exposeInMainWorld("native", {
close: () => ipcRenderer.send("close"),
setBadgeCount: (count: number) => ipcRenderer.send("setBadgeCount", count),
// Wrapped in braces to return void
onceScreenPicker: (
onScreenPick: (
sources: { idx: number; name: string }[],
callback: (idx: number, audio: boolean) => void,
) => void,
) => {
ipcRenderer.once("screenPicker", (_, sources, callback) =>
onScreenPick(sources, callback),
);
},
});