We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a258c9b commit 1ed9b41Copy full SHA for 1ed9b41
src/electron/main.js
@@ -32,6 +32,7 @@ const browserWindowOpts = {
32
minWidth: 500,
33
minHeight: 400,
34
resizable: false,
35
+ skipTaskbar: true, // Hide the app from the Windows taskbar
36
webPreferences: {
37
enableRemoteModule: true,
38
nodeIntegration: true,
@@ -106,7 +107,7 @@ const mb = menubar({
106
107
index: `file://${__dirname}/index.html`,
108
browserWindow: browserWindowOpts,
109
preloadWindow: true,
- showDockIcon: false,
110
+ showDockIcon: false, // Hide the app from the macOS dock
111
});
112
113
let shouldUseAlternateIdleIcon = false;
0 commit comments