2018-08-31 16:41:28 +03:00
|
|
|
import { app } from 'electron'
|
|
|
|
|
2020-03-01 18:10:45 +03:00
|
|
|
export function parseArgs (argv: string[], cwd: string): any {
|
2018-08-31 16:41:28 +03:00
|
|
|
if (argv[0].includes('node')) {
|
|
|
|
argv = argv.slice(1)
|
|
|
|
}
|
|
|
|
|
2021-01-02 22:24:26 +03:00
|
|
|
return require('yargs/yargs')(argv.slice(1))
|
2021-06-30 00:57:04 +03:00
|
|
|
.usage('tabby [command] [arguments]')
|
2018-08-31 16:41:28 +03:00
|
|
|
.command('open [directory]', 'open a shell in a directory', {
|
|
|
|
directory: { type: 'string', 'default': cwd },
|
|
|
|
})
|
2021-05-16 20:40:54 +03:00
|
|
|
.command(['run [command...]', '/k'], 'run a command in the terminal', {
|
2018-08-31 16:41:28 +03:00
|
|
|
command: { type: 'string' },
|
|
|
|
})
|
2018-12-17 01:13:14 +03:00
|
|
|
.command('profile [profileName]', 'open a tab with specified profile', {
|
|
|
|
profileName: { type: 'string' },
|
|
|
|
})
|
2018-09-23 17:33:57 +03:00
|
|
|
.command('paste [text]', 'paste stdin into the active tab', yargs => {
|
|
|
|
return yargs.option('escape', {
|
|
|
|
alias: 'e',
|
|
|
|
type: 'boolean',
|
2020-02-05 15:16:31 +03:00
|
|
|
describe: 'Perform shell escaping',
|
2018-09-23 17:33:57 +03:00
|
|
|
}).positional('text', {
|
2020-02-05 15:16:31 +03:00
|
|
|
type: 'string',
|
2018-09-23 17:33:57 +03:00
|
|
|
})
|
|
|
|
})
|
2022-02-23 22:36:24 +03:00
|
|
|
.command('recent [index]', 'open a tab with a recent profile', {
|
|
|
|
profileNumber: { type: 'number' },
|
|
|
|
})
|
2021-12-12 14:03:10 +03:00
|
|
|
.version(app.getVersion())
|
2018-09-23 17:33:57 +03:00
|
|
|
.option('debug', {
|
|
|
|
alias: 'd',
|
|
|
|
describe: 'Show DevTools on start',
|
2020-02-05 15:16:31 +03:00
|
|
|
type: 'boolean',
|
2018-09-23 17:33:57 +03:00
|
|
|
})
|
2018-11-11 15:24:27 +03:00
|
|
|
.option('hidden', {
|
|
|
|
describe: 'Start minimized',
|
2020-02-05 15:16:31 +03:00
|
|
|
type: 'boolean',
|
2018-11-11 15:24:27 +03:00
|
|
|
})
|
2018-09-23 17:33:57 +03:00
|
|
|
.help('help')
|
2021-01-02 22:24:26 +03:00
|
|
|
.parse()
|
2018-08-31 16:41:28 +03:00
|
|
|
}
|