-
Notifications
You must be signed in to change notification settings - Fork 1
/
menu.js
65 lines (57 loc) · 1.46 KB
/
menu.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const { Menu, shell } = require('electron')
module.exports = () => {
let template = [
{
role : 'appMenu',
submenu : [
{
label : 'About'
},
{
label : 'Check for updates'
},
{
type: 'separator'
},
{
label : 'Settings',
accelerator : 'CmdOrCtrl+,'
},
{
type: 'separator'
},
{
label : 'Hide',
accelerator : 'CmdOrCtrl+H'
},
{
label : 'Quit',
accelerator : 'CmdOrCtrl+Q'
},
]
},
{
label : 'Items',
},
{
role : 'editMenu'
},
{
role : 'windowMenu'
},
{
role : 'help',
submenu : [
{
label : 'Report a bug',
click : () => {
shell.openExternal("https://github.com/ThomasBernard03/Happy/issues")
}
}
]
}
]
//if (process.platform === "darwin") template.unshift({role : 'appMenu'})
let menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)
}