Merge pull request #168 from webknjaz/bugfixes/167-weather-upd-freq

 Decrease weather update frequency to 2 minutes
This commit is contained in:
streetturtle 2020-07-14 10:30:35 -04:00 committed by GitHub
commit 8dd2793651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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