local dkjson = require("lain.util").dkjson
local math = require("math")
-local lain = require("lain")
+local awful = require("awful")
local beautiful = require("beautiful")
local widgets = {}
return (not err and val) or "n/a"
end
-widgets.eth_widget = lain.widget.watch({
- cmd = "curl -m5 -s 'https://poloniex.com/public?command=returnTicker'",
- timeout = 600,
- settings = function()
- widget:set_text(poloniex_price(output, 'BTC_ETH') .. " Ƀ/Ξ")
- end,
-})
+widgets.eth_widget = awful.widget.watch(
+ "curl -m5 -s 'https://poloniex.com/public?command=returnTicker'", 600,
+ function(widget, output)
+ widget:set_text(poloniex_price(output, 'BTC_ETH') .. " Ƀ/Ξ")
+ end
+)
local function coindesk_price(output, base, prec)
local xc, pos, err = dkjson.decode(output, 1, nil)
return (not err and val) or "n/a"
end
-widgets.btc_widget = lain.widget.watch({
- cmd = "curl -m5 -Ls 'https://api.coindesk.com/v1/bpi/currentprice/EUR.json'",
- timeout = 600,
- settings = function()
- widget:set_text(coindesk_price(output, "EUR", 2) .. " €/Ƀ")
- end
-})
+widgets.btc_widget = awful.widget.watch(
+ "curl -m5 -Ls 'https://api.coindesk.com/v1/bpi/currentprice/EUR.json'", 600,
+ function(widget, output)
+ widget:set_text(coindesk_price(output, "EUR", 2) .. " €/Ƀ")
+ end
+)
return widgets
local dkjson = require("lain.util").dkjson
local math = require("math")
-local lain = require("lain")
+local awful = require("awful")
local beautiful = require("beautiful")
local widgets = {}
return (not err and val) or "n/a"
end
-widgets.ecb_widget = lain.widget.watch({
- cmd = "curl -m5 -s 'https://api.exchangeratesapi.io/latest?base=EUR'",
- timeout = 600,
- settings = function()
- widget:set_text(parse_ecb_rates(output, 'NZD') .. " NZD = "
- .. parse_ecb_rates(output, 'CHF') .. " CHF")
- end,
-})
+widgets.ecb_widget = awful.widget.watch(
+ "curl -m5 -s 'https://api.exchangeratesapi.io/latest?base=EUR'", 600,
+ function(widget, output)
+ widget:set_text(parse_ecb_rates(output, 'NZD') .. " NZD = "
+ .. parse_ecb_rates(output, 'CHF') .. " CHF")
+ end
+)
return widgets