hyper-crypto-price
v0.0.1
Published
Crypto price status for Hyper
Downloads
13
Maintainers
Readme
hyper-crypto-price
Crypto Price Plugin for Hyper. Shows a configurable list of crypto coin prices.
This idea was based of hyper-statusline plugin created by henrikdahl
Install
Add the following to your ~/.hyper.js
config.
module.exports = {
// other configs
...
plugins: ['hyper-crypto-price'],
...
}
Config
To control which coins are displayed you will need to enter the full coin name and not just the ticker. This can be done by providing a list of coin names to the config file like so:
Add the following to your ~/hyper.js
config.
module.exports = {
config: {
...
hyperCryptoPrice: {
'coins': ['bitcoin', 'iota', 'neo'],
'refreshRate': 5000
}
...
}
}