]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

switch to new awful.widgets.watch from lain
authormartin f. krafft <madduck@madduck.net>
Sat, 2 Nov 2019 09:48:49 +0000 (22:48 +1300)
committermartin f. krafft <madduck@madduck.net>
Sat, 2 Nov 2019 09:48:49 +0000 (22:48 +1300)
.config/awesome/cryptocoin_widgets.lua
.config/awesome/forex_widgets.lua

index 4d83772648d579849f1cf540a99c6554cb1319e2..ef6435dba991bc85cfeca0f49e2ffe626c8db842 100644 (file)
@@ -1,6 +1,6 @@
 local dkjson = require("lain.util").dkjson
 local math = require("math")
-local lain = require("lain")
+local awful = require("awful")
 local beautiful = require("beautiful")
 
 local widgets = {}
@@ -13,13 +13,12 @@ local function poloniex_price(output, pair, prec)
     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)
@@ -29,12 +28,11 @@ local function coindesk_price(output, base, prec)
     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
index 66961cd28efabf222707de64e20014737906fd8d..3ffc3bd7f78edc7d140ac73cec65176e58087844 100644 (file)
@@ -1,6 +1,6 @@
 local dkjson = require("lain.util").dkjson
 local math = require("math")
-local lain = require("lain")
+local awful = require("awful")
 local beautiful = require("beautiful")
 
 local widgets = {}
@@ -14,13 +14,12 @@ local function parse_ecb_rates(output, symbol, prec)
     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