tabby/tabby-local
Matthew Davidson 7e8c19e97b Correctly name profiles for shells outside /usr
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".
2021-07-16 16:50:32 -04:00
..
2021-07-12 21:29:28 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00

Tabby Local Plugin

  • local shells

Using the API:

import { ShellProvider } from 'tabby-local'

Exporting your subclasses:

@NgModule({
  ...
  providers: [
    ...
    { provide: ShellProvider, useClass: MyShellPlugin, multi: true },
    ...
  ]
})