awesome/awesome-wm-widgets/secrets.lua

16 lines
451 B
Lua
Raw Permalink Normal View History

2018-11-28 15:31:35 +01:00
-------------------------------------------------
-- Allows to store API keys in one place
--
-- @author Pavel Makhov
-- @copyright 2018 Pavel Makhov
--------------------------------------------
local secrets = {
-- Yandex.Translate API key - https://tech.yandex.com/translate/
translate_widget_api_key = '<API_KEY>',
-- OpenWeatherMap API key - https://openweathermap.org/appid
weather_widget_api_key = '<API_KEY>'
}
return secrets