refactor: autostart

pull/67/head
xiaojunnuo 2021-03-27 17:23:31 +08:00
parent a3c4b2a206
commit e6d4ae6753
2 changed files with 12 additions and 2 deletions

View File

@ -6,9 +6,9 @@ import { createProtocol } from 'vue-cli-plugin-electron-builder/lib'
import backend from './bridge/backend'
import DevSidecar from '@docmirror/dev-sidecar'
import log from './utils/util.log'
import minimist from 'minimist'
// eslint-disable-next-line no-unused-vars
const isMac = process.platform === 'darwin'
// import installExtension, { VUEJS_DEVTOOLS } from 'electron-devtools-installer'
const isDevelopment = process.env.NODE_ENV !== 'production'
@ -113,6 +113,14 @@ function createWindow () {
win.hide()
}
})
if (process.argv) {
const args = minimist(process.argv)
console.log('start args', args)
if (args.hideWindow) {
win.hide()
}
}
}
async function beforeQuit () {

View File

@ -13,7 +13,9 @@ export default {
app.setLoginItemSettings({
openAtLogin: true,
path: ex,
args: []
args: [
'--hideWindow', '"true"'
]
})
event.sender.send('auto-start', { key: 'enabled', value: true })
} else {