1.0.0 • Published 7 years ago
hyper2-border v1.0.0
hyper-border

Add a gradient border to the Hyper2 terminal
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.
1.0.0
7 years ago