mirror of
https://github.com/Eugeny/tabby
synced 2024-11-16 17:58:12 +00:00
23 lines
725 B
TypeScript
23 lines
725 B
TypeScript
import { app } from 'electron'
|
|
|
|
export function parseArgs (argv, cwd) {
|
|
if (argv[0].includes('node')) {
|
|
argv = argv.slice(1)
|
|
}
|
|
|
|
return require('yargs')
|
|
.usage('terminus [command] [arguments]')
|
|
.command('open [directory]', 'open a shell in a directory', {
|
|
directory: { type: 'string', 'default': cwd },
|
|
})
|
|
.command('run [command...]', 'run a command in the terminal', {
|
|
command: { type: 'string' },
|
|
})
|
|
.version('v', 'Show version and exit', app.getVersion())
|
|
.alias('d', 'debug')
|
|
.describe('d', 'Show DevTools on start')
|
|
.alias('h', 'help')
|
|
.help('h')
|
|
.strict()
|
|
.parse(argv.slice(1))
|
|
}
|