Coin Price indicator is a cryptocurrency (such as Bitcoin) price indicator applet for Ubuntu Linux. It shows various price points (depending on what the exchange API provides) in the indicator menu.
It currently supports the following exchanges:
NEW: Since version 0.9 you can easily add your own exchanges (see Extending below).
Tested and working on Ubuntu Linux 16.04 with Unity. On other systems and desktop managers (e.g. Ubuntu 17.10 with Gnome3), you can get the app working by installing Libappindicator support (see troubleshooting below).
Install python dependencies and install GSettings schema by running the following command
make install
make
to run and the indicator should appear in the notification area.python3 coin/coin.py
to start the app (this will also let you specify an asset pair--see below).startmany.yaml
, run make many
.Coin.py takes two optional parameters to configure the instance(s):
python3 coin/coin.py asset=kraken:XXBTZEUR:30
will launch a single indicator for the asset pair XBT/EUR on the Kraken exchange with a refresh rate of 30 seconds. Asset pairs must always be in this format: X XBT Z EUR
where X
means from
and Z
means to
. According to the ISO standard, currencies that are not bound to a country take an X as the first letter of their abbreviation, hence XBT
for Bitcoin.
python3 coin/coin.py file=startmany.yaml
will read startmany.yaml from the coin
directory and start an indicator for each configuration it finds in there. Take a peek in startmany.yaml
for examples and edit it to configure the exchanges, currency pairs and refresh rates for each instance.
Adding your own exchange plug-in is easy. Just create class file with methods for returning a ticker URL and parsing the response from the ticker API and add the file to the exchanges
folder. Have a peek at the existing plug-ins for an example and don't forget to contribute your plug-ins here on GitHub!
If you're getting a BitYep error, please run make install
again, it will now clear any old and or corrupted dconf settings before copying in the new settings schema.
If you're getting a SyntaxError: Missing parentheses in call to 'print'.
, you may be using a Python2 library in there somewhere. Look through the error to identify which package it is. If it is gi
, you can install the correct version with sudo apt install python3-gi
. Additionally, you may have to uninstall the python2 gi library pip3 uninstall gi
for it to work.
If you're not on an Ubuntu Linux or if you're not running the Unity desktop manager, you can still get the app running (depending on the system). Here's how to do it for Ubuntu 17.10 with Gnome3:
make install
, run sudo apt install gir1.2-appindicator3-0.1
to install libappindicator support.sudo apt install gnome-tweak-tool
to manually activate the extension.Version | Tag | Published |
---|---|---|
1.2.1 | 5yrs ago | |
1.2 | 5yrs ago | |
1.0 | 5yrs ago | |
0.9.8 | 5yrs ago |