]> 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:

poll forex every 6h
authormartin f. krafft <madduck@madduck.net>
Thu, 27 Jun 2024 08:23:33 +0000 (10:23 +0200)
committermartin f. krafft <madduck@madduck.net>
Thu, 27 Jun 2024 08:28:44 +0000 (10:28 +0200)
.config/awesome/forex_widgets.lua

index a8e905fe165056edfe25b9cd210f4821c5a58caa..8039284592b4161cf2c9594041df9445c32a5c2e 100644 (file)
@@ -15,7 +15,7 @@ local function parse_ecb_rates(output, symbol, prec)
 end
 
 widgets.ecb_widget = awful.widget.watch(
-  "curl -m5 -s 'http://api.exchangeratesapi.io/v1/latest?base=EUR&access_key=28639a585f6b46bbddd41d3ffe337fc5&symbols=NZD,USD,CHF'", 10800,
+  "curl -m5 -s 'http://api.exchangeratesapi.io/v1/latest?base=EUR&access_key=28639a585f6b46bbddd41d3ffe337fc5&symbols=NZD,USD,CHF'", 21600,
   function(widget, output)
     widget:set_text(parse_ecb_rates(output, 'NZD') .. " NZD = "
     .. parse_ecb_rates(output, 'CHF') .. " CHF")