tabby/terminus-terminal/src/shells/custom.ts
2017-10-21 22:11:27 +02:00

23 lines
562 B
TypeScript

import { Injectable } from '@angular/core'
import { ConfigService } from 'terminus-core'
import { ShellProvider, IShell } from '../api'
@Injectable()
export class CustomShellProvider extends ShellProvider {
constructor (
private config: ConfigService,
) {
super()
}
async provide (): Promise<IShell[]> {
let args = this.config.store.terminal.customShell.split(' ')
return [{
id: 'custom',
name: 'Custom',
command: args[0],
args: args.slice(1),
}]
}
}