hyper2-border

1.0.0 • Public • Published

hyper-border npm version Build Status

Add a gradient border to the Hyper2 terminal

hyper-border

Installation

Add hyper-border to plugins in your ~/.hyper.js configuration

module.exports = {
  ...
  plugins: ['hyper-border']
  ...
}

then restart the Hyper app or go to the menu 'Plugins / Update All Now'

Configuration

The following settings can be configured by adding a hyperBorder section in your .hyper.js config section:

Setting Type Description
borderWidth string CSS string for how thick the borders should be
borderColors string, string[] The color(s) for the border
EXAMPLE: Set Border Colors And Width
module.exports = {
  config: {
    ...
      hyperBorder: {
        borderColors: ['#fc1da7', '#fba506'],
        borderWidth: '8px'
      }
    ...
  }
}
EXAMPLE: Set Border Colors To Random Colors

In addition, you can set any color value to 'random' (string value):

module.exports = {
  config: {
    ...
      hyperBorder: {
        borderColors: ['random','random'],
        borderWidth: '8px'
      }
    ...
  }
}

Then every newly opened Hyper terminal window will have a different colored border.

Get Hyper

Full credit to @Webmatze for original work on hyperborder.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i hyper2-border

      Weekly Downloads

      4

      Version

      1.0.0

      License

      MIT

      Unpacked Size

      6.87 kB

      Total Files

      5

      Last publish

      Collaborators

      • lacymorrow