From: martin f. krafft Date: Wed, 20 Nov 2024 08:22:40 +0000 (+0100) Subject: remove forex and eth widgets X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/9ab190ce855df436019905153582c406299197e6?hp=b9df886c82df6a0ceb28a2b2b3c5c0c600d5868a remove forex and eth widgets --- diff --git a/.config/awesome/cryptocoin_widgets.lua b/.config/awesome/cryptocoin_widgets.lua index ef6435d..430619b 100644 --- a/.config/awesome/cryptocoin_widgets.lua +++ b/.config/awesome/cryptocoin_widgets.lua @@ -13,12 +13,12 @@ local function poloniex_price(output, pair, prec) return (not err and val) or "n/a" 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 -) +-- 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) diff --git a/.config/awesome/forex_widgets.lua b/.config/awesome/forex_widgets.lua index 8039284..d2ed7ce 100644 --- a/.config/awesome/forex_widgets.lua +++ b/.config/awesome/forex_widgets.lua @@ -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'", 21600, + "curl -m5 -s 'http://api.exchangeratesapi.io/v1/latest?base=EUR&access_key=28639a585f6b46bbddd41d3ffe337fc5&symbols=NZD,USD,CHF'", 86400, function(widget, output) widget:set_text(parse_ecb_rates(output, 'NZD') .. " NZD = " .. parse_ecb_rates(output, 'CHF') .. " CHF") diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 74f7bd9..74da4ba 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -25,7 +25,7 @@ local has_fdo, freedesktop = pcall(require, "freedesktop") -- Other libraries local lain = require("lain") local ccwidgets = require("cryptocoin_widgets") -local fxwidgets = require("forex_widgets") +--local fxwidgets = require("forex_widgets") local clocksarray = require("clocksarray") local dbg = require("debugfunc") local th = require("taghelpers") @@ -306,10 +306,10 @@ awful.screen.connect_for_each_screen(function(s) make_spacer(" "), ccwidgets.btc_widget, make_spacer(), - ccwidgets.eth_widget, - make_spacer(), - fxwidgets.ecb_widget, - make_spacer(), + --ccwidgets.eth_widget, + --make_spacer(), + --fxwidgets.ecb_widget, + --make_spacer(), lain_bat.widget, make_spacer(), }, right_widgets)