diff options
| author | André Doser <doser.andre@gmail.com> | 2015-01-27 17:52:17 +0100 |
|---|---|---|
| committer | André Doser <doser.andre@gmail.com> | 2015-01-27 17:52:17 +0100 |
| commit | 8f932503f79d193c36129548599b48489d840dc9 (patch) | |
| tree | 8f280f550837f8a203d17f0c6d3702299da31200 /py3status/modules | |
| parent | bf62eab56bee550daae4e12067084a17aff876d4 (diff) | |
documentation
Diffstat (limited to 'py3status/modules')
| -rw-r--r-- | py3status/modules/bitcoin-price.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/py3status/modules/bitcoin-price.py b/py3status/modules/bitcoin-price.py index 3d2e65b..d9f98b7 100644 --- a/py3status/modules/bitcoin-price.py +++ b/py3status/modules/bitcoin-price.py @@ -15,10 +15,10 @@ last_price = 0 class Py3status: # possible markets see http://bitcoincharts.com/markets/list/ cache_timeout = 900 # load max. every 15 min (according to bitcoincharts) - color_index = -1 - field = 'close' - markets = 'btceEUR, btcdeEUR' - symbols = True + color_index = -1 # color output according to which market? + field = 'close' # see http://bitcoincharts.com/about/markets-api/ + markets = 'btceEUR, btcdeEUR' # comma separated + symbols = True # convert USD -> $ etc. _map = {'EUR': '€', 'USD': '$', 'GBP': '£', 'YEN': '¥', 'CNY': '¥', 'AUD': '$'} |
