This package consumes the following services:
Bitcoin Status Bar
Display bitcoin conversion in Atom status bar.
##Installing
- Go to
Atom -> Preferences...
- Then select the
Packages
tab - Enter
bitcoin-status-bar
in the search box
Using apm
$ apm install bitcoin-status-bar
Install using Git
Alternatively, if you are a git user, you can install the package and keep up to date by cloning the repo directly into your ~/.atom/packages
directory.
$ git clone https://github.com/afj176/bitcoin-status-bar/ ~/.atom/packages/bitcoin-status-bar
Download Manually
- Download the files using the GitHub .zip download option and unzip them
- Move the
bitcoin-status-bar
folder to~/.atom/packages
Usage
Display your local bitcoin rate in your status bar.
Plugin settings page
To access the Bitcoin Status Bar Settings:
- Go to
Atom -> Preferences...
orcmd-,
- In the
Filter Packages
typebitcoin-status-bar
Bitcoin Status Bar has 5 settings that can be edited:
- Code | default:
USD
- Currency | default:
on
- Display | default:
left
- Icon | default:
atom://bitcoin-status-bar/styles/bitcoin.svg
- Refresh | default:
61
(if zero minutes only refreshes when open/close windows or trigger refresh)
Commands
The following commands are available and are keyboard shortcuts.
bitcoin-status-bar:toggle
- Toggle -ctrl-alt-b
ctrl-alt-b
bitcoin-status-bar:refresh
- Refresh -ctrl-alt-r
ctrl-alt-r
Flex Tool Bar integration (optional)
Follow instructions for Flex Tool Bar
then add to ~/atom/toolbar.json
[
{
"type": "button",
"icon": "btc",
"tooltip": "Bitcoin",
"iconset": "fa",
"callback": "bitcoin-status-bar:toggle",
"style": {
"color": "#f1c300"
}
},
//....... other buttons
]
Feel free fork, contribute, to open an issue to discuss potential features to add or improve.