1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-01 18:14:02 +03:00
tabby/app/lib/index.ts

78 lines
1.7 KiB
TypeScript
Raw Normal View History

2019-11-26 17:51:31 +03:00
import './sentry'
import './lru'
import { app, ipcMain, Menu } from 'electron'
import { parseArgs } from './cli'
import { Application } from './app'
2019-05-24 21:46:44 +03:00
import electronDebug = require('electron-debug')
import * as path from 'path'
import * as fs from 'fs'
if (!process.env.TERMINUS_PLUGINS) {
process.env.TERMINUS_PLUGINS = ''
}
const application = new Application()
2020-01-23 16:01:56 +03:00
if (process.env.PORTABLE_EXECUTABLE_DIR) {
const portableData = path.join(process.env.PORTABLE_EXECUTABLE_DIR, 'terminus-data')
if (!fs.existsSync(portableData)) {
fs.mkdirSync(portableData)
}
app.setPath('userData', portableData)
}
ipcMain.on('app:new-window', () => {
application.newWindow()
})
app.on('activate', () => {
if (!application.hasWindows()) {
application.newWindow()
} else {
application.focus()
}
})
2018-09-20 14:02:07 +03:00
app.on('window-all-closed', () => {
app.quit()
})
process.on('uncaughtException' as any, err => {
console.log(err)
application.broadcast('uncaughtException', err)
})
app.on('second-instance', (_event, argv, cwd) => {
application.send('host:second-instance', parseArgs(argv, cwd), cwd)
})
const argv = parseArgs(process.argv, process.cwd())
if (!app.requestSingleInstanceLock()) {
app.quit()
2019-08-07 16:10:00 +03:00
app.exit(0)
}
if (argv.d) {
2019-05-24 22:19:08 +03:00
electronDebug({
isEnabled: true,
showDevTools: true,
2019-11-26 17:51:31 +03:00
devToolsMode: 'undocked',
2019-05-24 22:19:08 +03:00
})
}
app.on('ready', () => {
2018-09-05 11:24:16 +03:00
if (process.platform === 'darwin') {
app.dock.setMenu(Menu.buildFromTemplate([
{
label: 'New window',
click () {
this.app.newWindow()
}
}
2018-09-05 11:24:16 +03:00
]))
}
application.init()
application.newWindow({ hidden: argv.hidden })
})