diff --git a/main.js b/main.js index 1c0536a..91c6eda 100644 --- a/main.js +++ b/main.js @@ -1115,6 +1115,13 @@ function createWindow(startUrl, bigPictureMode = false) { frame: false, backgroundColor: '#0b0d10', }); + } else if (process.platform === 'linux') { + // On Linux, use a frameless window so only the in-app controls are shown. + Object.assign(windowOptions, { + frame: false, + backgroundColor: '#0b0d10', + skipTaskbar: true + }); } else { windowOptions.frame = true; }