mirror of
https://github.com/cupcakearmy/unpixel.git
synced 2024-12-22 16:16:30 +00:00
42 lines
920 B
TypeScript
42 lines
920 B
TypeScript
import { app } from 'electron'
|
|
import logger from 'electron-log'
|
|
|
|
import TrayUtility from './tray'
|
|
import Settings from './settings'
|
|
import Banner from './banner'
|
|
import Updater from './updater'
|
|
import { InputDevicesStatus } from './utils'
|
|
|
|
export const DEV = !app.isPackaged
|
|
|
|
// Enforce single instance
|
|
const isMain = app.requestSingleInstanceLock()
|
|
if (!isMain) app.quit()
|
|
|
|
// Disable gpu
|
|
app.disableHardwareAcceleration()
|
|
app.commandLine.appendSwitch('disable-software-rasterizer')
|
|
|
|
logger.catchErrors({ showDialog: true })
|
|
logger.log('Starting')
|
|
app
|
|
.whenReady()
|
|
.then(() => {
|
|
logger.log('Initializing')
|
|
if (!DEV) app.dock?.hide()
|
|
TrayUtility.init()
|
|
Settings.init()
|
|
Banner.init()
|
|
Updater.init()
|
|
InputDevicesStatus.init()
|
|
logger.log('Done')
|
|
})
|
|
.catch((e) => {
|
|
logger.error(e)
|
|
process.exit(1)
|
|
})
|
|
|
|
app.on('window-all-closed', () => {
|
|
// Prevent closing of the app
|
|
})
|