Skip to content

Commit 1ed9b41

Browse files
authored
feat: hide windows taskbar (#1561)
Signed-off-by: Adam Setch <[email protected]>
1 parent a258c9b commit 1ed9b41

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/electron/main.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const browserWindowOpts = {
3232
minWidth: 500,
3333
minHeight: 400,
3434
resizable: false,
35+
skipTaskbar: true, // Hide the app from the Windows taskbar
3536
webPreferences: {
3637
enableRemoteModule: true,
3738
nodeIntegration: true,
@@ -106,7 +107,7 @@ const mb = menubar({
106107
index: `file://${__dirname}/index.html`,
107108
browserWindow: browserWindowOpts,
108109
preloadWindow: true,
109-
showDockIcon: false,
110+
showDockIcon: false, // Hide the app from the macOS dock
110111
});
111112

112113
let shouldUseAlternateIdleIcon = false;

0 commit comments

Comments
 (0)