0.0.2 • Published 5 years ago

hyper-active-tab v0.0.2

Weekly downloads
310
License
MIT
Repository
github
Last release
5 years ago

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
}