Hide default linux task buttons

The electron app now uses the built in menu bar on linux
This commit is contained in:
2026-02-24 15:19:41 +13:00
parent 618ea7d12d
commit 6b2a7c8404
+7
View File
@@ -1115,6 +1115,13 @@ function createWindow(startUrl, bigPictureMode = false) {
frame: false, frame: false,
backgroundColor: '#0b0d10', 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 { } else {
windowOptions.frame = true; windowOptions.frame = true;
} }