Dock (macOS)
The custom dock is commonly used to add shortcuts to tasks the user wouldn’t want to open the whole app window for.
Dock menu of Terminal.app:
To set your custom dock menu, you need to use the app.dock.setMenu API, which is only available on macOS.
Starting with a working application from the , update the file with the following lines:
- index.html
- main.js
const { app, BrowserWindow, Menu } = require('electron')
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600,
})
win.loadFile('index.html')
}
{
click () { console.log('New Window') }
}, {
label: 'New Window with Settings',
submenu: [
{ label: 'Basic' },
{ label: 'Pro' }
]
},
{ label: 'New Command...' }
])
app.whenReady().then(() => {
}
}).then(createWindow)
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
After launching the Electron application, right click the application icon. You should see the custom menu you just defined: