From b43a8429073b9796a4a31a13701a83e518c5fba3 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Tue, 17 Jan 2017 14:54:19 +1100 Subject: [PATCH] add BTC_EUR bitcoin price widget --- .config/awesome/rc.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 970c0a4..6146067 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -131,6 +131,22 @@ local lain_bat = lain.widgets.bat({ end, }) +local function poloniex_price(output, pair, accuracy) + local xc, pos, err = require("lain.util").dkjson.decode(output, 1, nil) + if not accuracy then accuracy = 4 end + val = (xc and xc[pair]["last"]) or 0 + val = val - val % (1/(10^accuracy)) + return (not err and val) or "n/a" +end + +local xc_widget = lain.widgets.abase({ + cmd = "curl -m5 -s 'https://poloniex.com/public?command=returnTicker'", + timeout = 600, + settings = function() + widget:set_text(poloniex_price(output, 'BTC_ETH') .. " Ƀ/Ξ") + end +}) + -- }}} -- {{{ Menu @@ -300,6 +316,8 @@ awful.screen.connect_for_each_screen(function(s) layout = wibox.layout.fixed.horizontal, mykeyboardlayout, wibox.widget.systray(), + xc_widget, + spacer, lain_bat.widget, spacer, mytextclock, -- 2.39.2