Decrease weather update frequency to 2 minutes

Ref #167
This commit is contained in:
Sviatoslav Sydorenko 2020-07-14 09:49:18 +02:00
parent 72b4a2d4ca
commit a1ebd2af6c
No known key found for this signature in database
GPG Key ID: 9345E8FEA89CA455
1 changed files with 5 additions and 1 deletions

View File

@ -450,7 +450,11 @@ local function worker(args)
end)))
-- watch('cat /home/pmakhov/.config/awesome/awesome-wm-widgets/weather-widget/weather.json', 5, update_widget, weather_widget)
watch(string.format(GET_FORECAST_CMD, owm_one_cal_api), 5, update_widget, weather_widget)
watch(
string.format(GET_FORECAST_CMD, owm_one_cal_api),
120, -- API limit is 1k req/day; day has 1440 min; every 2 min is good
update_widget, weather_widget,
)
return weather_widget
end