escrcpy/electron/events/index.js

22 lines
484 B
JavaScript
Raw Normal View History

import { app, ipcMain } from 'electron'
import shortcuts from './shortcuts/index.js'
import updater from './updater/index.js'
import handles from './handles/index.js'
import tray from './tray/index.js'
import theme from './theme/index.js'
export default (mainWindow) => {
ipcMain.on('restart-app', () => {
app.isQuiting = true
app.relaunch()
app.quit()
})
2024-05-13 16:49:39 +02:00
handles(mainWindow)
updater(mainWindow)
tray(mainWindow)
theme(mainWindow)
shortcuts(mainWindow)
}