I want to force the user only be allowed to quit the app from the Menu or Tray icon. I have those configured and working, but every time I hit Cmd+W or Cmd+Q it exits the app...
I tried catching it with:
app.on('quit', e => e.preventDefault())
app.on('window-all-closed', e => e.preventDefault())
...but it doesn't seem to have any effect.