mirror of
https://github.com/Eugeny/tabby.git
synced 2025-09-22 16:16:04 +00:00
.github
app
assets
lib
app.ts
cli.ts
config.ts
index.ts
lru.ts
window.ts
src
dev-app-update.yml
index.pug
package.json
tsconfig.json
tsconfig.main.json
webpack.config.js
webpack.main.config.js
yarn.lock
build
docs
extras
scripts
snap
terminus-community-color-schemes
terminus-core
terminus-plugin-manager
terminus-settings
terminus-ssh
terminus-terminal
terminus-uac
.gitignore
.pug-lintrc.js
.travis.ssh.key.enc
.travis.ssh.key.pub
.travis.yml
CODE_OF_CONDUCT.md
HACKING.md
LICENSE
README.md
appveyor.yml
package.json
tsconfig.json
tslint.json
typedoc.js
webpack.config.js
yarn.lock
62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
import './lru'
|
|
import { app, ipcMain, Menu } from 'electron'
|
|
import { parseArgs } from './cli'
|
|
import { Application } from './app'
|
|
|
|
if (!process.env.TERMINUS_PLUGINS) {
|
|
process.env.TERMINUS_PLUGINS = ''
|
|
}
|
|
|
|
const application = new Application()
|
|
|
|
ipcMain.on('app:new-window', () => {
|
|
application.newWindow()
|
|
})
|
|
|
|
app.on('activate', () => {
|
|
if (!application.hasWindows()) {
|
|
application.newWindow()
|
|
} else {
|
|
application.focus()
|
|
}
|
|
})
|
|
|
|
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()
|
|
process.exit(0)
|
|
}
|
|
|
|
if (argv.d) {
|
|
require('electron-debug')({ enabled: true, showDevTools: 'undocked' })
|
|
}
|
|
|
|
app.on('ready', () => {
|
|
if (process.platform === 'darwin') {
|
|
app.dock.setMenu(Menu.buildFromTemplate([
|
|
{
|
|
label: 'New window',
|
|
click () {
|
|
this.app.newWindow()
|
|
}
|
|
}
|
|
]))
|
|
}
|
|
application.init()
|
|
application.newWindow({ hidden: argv.hidden })
|
|
})
|