New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

hyperborder-animation

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyperborder-animation

Extension for border effects in hyperterm

latest
npmnpm
Version
0.0.2
Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

hyperborder - extension for HyperTerm

adds a gradient border to the hyperterm editor

Installation

add it to plugins in your ~/.hyperterm.js configuration

module.exports = {
  ...
  plugins: ['hyperborder-animation']
  ...
}

then just restart your HyperTerm app or go to the menu 'Plugins / Update All Now'

Configuration

Set Border Colors And Width

It is now possible to change the gradient colors and the border width.

Just add the following to your .hyperterm.js:

module.exports = {
  config: {
    ...
      hyperBorder: {
        borderColors: ['#ff2400', '#e81d1d', '#e8b71d',' #e3e81d', '#1de840', '#1ddde8', '#2b1de8', '#dd00f3', '#dd00f3'],
        borderWidth: '8px'
      }
    ...
  }
}

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 HyperTerm window will have a different colored border.

Animate Border Colors

You like some animations? Than try this:

module.exports = {
  config: {
    ...
    hyperBorder: {
      animate: true,
      deg: '124deg',
      backgroundSize: '800% 1800%',
      time: '8s'
      ...
    }
    ...
  }
}

Example

module.exports = {
  config: {
    ...
    hyperBorder: {
      borderColors: [`#ff2400`, `#e81d1d`, `#e8b71d`,` #e3e81d`, `#1de840`, `#1ddde8`, `#2b1de8`, `#dd00f3`, `#dd00f3`],
      borderWidth: '3px',
      animate: true,
      deg: '124deg',
      backgroundSize: '800% 1800%',
      time: '8s',
      ...
    }
    ...
  }
}

download HyperTerm here

https://hyperterm.org/

using

https://github.com/webmatze/hyperborder

Keywords

hyperterm

FAQs

Package last updated on 13 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts