From 128aec5ef7cb8dbf2e9cee592188be7c54e4588f Mon Sep 17 00:00:00 2001 From: pmakhov Date: Mon, 4 Dec 2017 11:56:21 -0500 Subject: externalize api key --- weather-widget/weather.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'weather-widget') diff --git a/weather-widget/weather.lua b/weather-widget/weather.lua index 5ee1d39..e5367f6 100644 --- a/weather-widget/weather.lua +++ b/weather-widget/weather.lua @@ -1,10 +1,12 @@ +package.path = package.path .. ";../../secrets.lua" +local secrets = require("secrets") local wibox = require("wibox") local http = require("socket.http") local json = require("json") local naughty = require("naughty") local city = "Montreal,ca" -local open_map_key = "" +local open_map_key = secrets.weather_widget_api_key local path_to_icons = "/usr/share/icons/Arc/status/symbolic/" local icon_widget = wibox.widget { -- cgit v1.2.3