Add a symbol to the ▲ active tab
in your hyper terminal.
- Simple configuration in
.hyper.js
- Compatible with any theme
hyper i hyper-active-tab
Add a line to your hyper configuration (~/.hyper.js
) :
module.exports = {
config: {
// rest of the config
activeTab: '🍕'
}
// rest of the file
}
module.exports = {
config: {
// rest of the config
activeTab: {
symbol: '☀︎',
color: 'yellow'
}
}
// rest of the file
}