Status Line Plugin for Hyper forked to include Revolut statuses.
npm install hyper-statusline-extendedjs
module.exports = {
...
plugins: ["hyper-statusline-extended"]
...
}
`
Or, install it via the CLI, like so, and then restart Hyper.
`
hyper i hyper-statusline-extended
`
Config
Add the following to your Hyper config's config object.
$3
Note to use this, you need to have tducret's Revolut API and a Revolut API token, follow their doc's to get one.
If you have more than one balance/vault set, you can then cycle through them by clicking the component on the status line.
`js
revolut: {
balanceCurrencies: [], // Can include 'EUR', 'USD', and/or 'GBP'
vaultCurrencies: [], // Can include 'EUR', 'USD', and/or 'GBP'
REV_TOKEN: '',
REV_API_PATH: ''
}
`
$3
Expected value is CSS color
`js
hyperStatusLine: {
dirtyColor: 'salmon',
}
`
$3
Expected value is CSS color
`js
hyperStatusLine: {
aheadColor: 'ivory',
}
`
$3
Default value is set to true
`js
hyperStatusLine: {
footerTransparent: false,
}
``