hyper-active-tab
v0.0.2
Published
Add a symbol to the active tab in your hyper terminal.
Downloads
261
Maintainers
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
) :
module.exports = {
config: {
// rest of the config
activeTab: '🍕'
}
// rest of the file
}
Configure symbol and color
module.exports = {
config: {
// rest of the config
activeTab: {
symbol: '☀︎',
color: 'yellow'
}
}
// rest of the file
}