https://github.com/lucleray/hyper-active-tab
Add a symbol to the active tab in your hyper terminal
https://github.com/lucleray/hyper-active-tab
active hyper hyper-plugin tab
Last synced: 11 months ago
JSON representation
Add a symbol to the active tab in your hyper terminal
- Host: GitHub
- URL: https://github.com/lucleray/hyper-active-tab
- Owner: lucleray
- Created: 2018-05-09T23:19:46.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T17:41:33.000Z (over 7 years ago)
- Last Synced: 2025-06-08T01:49:48.022Z (11 months ago)
- Topics: active, hyper, hyper-plugin, tab
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/hyper-active-tab
- Size: 193 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## hyper-active-tab
Add a symbol to the `▲ active tab` in your hyper terminal.
* Simple configuration in `.hyper.js`
* Compatible with any theme
### Install
`hyper i hyper-active-tab`
### Configure symbol
Add a line to your hyper configuration (`~/.hyper.js`) :
```js
module.exports = {
config: {
// rest of the config
activeTab: '🍕'
}
// rest of the file
}
```
### Configure symbol and color
```js
module.exports = {
config: {
// rest of the config
activeTab: {
symbol: '☀︎',
color: 'yellow'
}
}
// rest of the file
}
```