https://github.com/uriel1998/conky_cryptocurrency_info
A simple (and hopefully easily extendable) bash script to output data to the commandline or conky
https://github.com/uriel1998/conky_cryptocurrency_info
bash conky cryptocurrency
Last synced: about 1 month ago
JSON representation
A simple (and hopefully easily extendable) bash script to output data to the commandline or conky
- Host: GitHub
- URL: https://github.com/uriel1998/conky_cryptocurrency_info
- Owner: uriel1998
- License: mit
- Created: 2018-02-05T01:58:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-05T02:06:32.000Z (over 8 years ago)
- Last Synced: 2025-05-31T05:26:44.396Z (about 1 year ago)
- Topics: bash, conky, cryptocurrency
- Language: Shell
- Size: 2.93 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# conky_cryptocurrency_info
A simple (and hopefully easily extendable) bash script to output data to the commandline or conky
## Requires
* curl
* bash
## Customization
In the `cryptocurrency_apidata.sh` script, add the cryptocurrency and its
symbols in the two arrays `ccname` and `ccsymbol`. The default is
`ccname=( bitcoin bitcoin-cash litecoin ethereum )`
`ccsymbol=( BTC BCH LTC ETH )`
but if you wanted to add another, it would be as simple as making it
`ccname=( bitcoin bitcoin-cash litecoin ethereum myfakecc )`
`ccsymbol=( BTC BCH LTC ETH MFC )`
This script pulls from coinmarketcap.com
## Usage
Run `bash cryptocurrency_apidata.sh`.
If you wish to use the conky script, a basic one is included. If you need
help setting up conky, see [Setting Up Conky](https://help.ubuntu.com/community/SettingUpConky).
## TODO
* Integrate [cryptocoin glyphs](https://github.com/allienworks/cryptocoins)
; the start of it is there, but it's essentially pointless code at the
moment.