mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-18 10:30:01 +00:00

Thanks for fixing my issue https://github.com/Eugeny/terminus/issues/2712! I noticed that the icon has a horizontal bar which makes it look quite different from most Windows applications. This PR removes the bar to make the icon match most other Windows applications.
Terminus Core Plugin
See also: Settings plugin API, Terminal plugin API, Local terminal API
- tabbed interface services
- toolbar UI
- config file management
- hotkeys
- tab recovery
- logging
- theming
Using the API:
import { AppService, TabContextMenuItemProvider } from 'terminus-core'
Exporting your subclasses:
@NgModule({
...
providers: [
...
{ provide: TabContextMenuItemProvider, useClass: MyContextMenu, multi: true },
...
]
})