Created
February 10, 2016 19:56
-
-
Save Nikamura/e864371062a422b51c59 to your computer and use it in GitHub Desktop.
Bitbar BTC price with icon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'json' | |
begin | |
data = `curl -s https://localbitcoins.com/bitcoinaverage/ticker-all-currencies/` | |
price = JSON.parse(data).fetch('EUR').fetch('avg_1h').round(2) | |
puts "\xEF\x85\x9A #{price} | font=FontAwesome" | |
rescue | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment