mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-08 05:20:01 +00:00

Shells outside /usr get named incorrectly. E.g., if I add /usr/local/bin/fish to /etc/shells, when Tabby starts up, it think the profile name should be "local".
Tabby Local Plugin
- local shells
Using the API:
import { ShellProvider } from 'tabby-local'
Exporting your subclasses:
@NgModule({
...
providers: [
...
{ provide: ShellProvider, useClass: MyShellPlugin, multi: true },
...
]
})