From 6b2a7c8404fd263bda9928ae65ec9d9ad5a6ffdc Mon Sep 17 00:00:00 2001 From: Andrew Zambazos Date: Tue, 24 Feb 2026 15:19:41 +1300 Subject: [PATCH] Hide default linux task buttons The electron app now uses the built in menu bar on linux --- main.js | 7 +++++++ 1 file changed, 7 insertions(+) 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; }