diff options
| author | prabinpanta0 <pantaprabin30@gmail.com> | 2025-10-27 10:35:13 +0545 |
|---|---|---|
| committer | prabinpanta0 <pantaprabin30@gmail.com> | 2025-10-27 10:35:13 +0545 |
| commit | 7275b5f73ff6c1164cba645a5f41ac088a10e7cc (patch) | |
| tree | 1a3c58855f33381489114d69eba13ee0bb4e2476 /config/hypr/UserScripts/Weather.py | |
| parent | 95b85dd6c59620d660ff320a07bdf7b3c42bdc46 (diff) | |
config(hypr): run Weather.sh at startup; lower weather cache TTL to 5 minutes
Diffstat (limited to 'config/hypr/UserScripts/Weather.py')
| -rwxr-xr-x | config/hypr/UserScripts/Weather.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index 3b58d8ff..47c88d1f 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -57,7 +57,7 @@ class WeatherData: CACHE_DIR: Path = Path.home() / ".cache" API_CACHE_PATH: Path = CACHE_DIR / "open_meteo_cache.json" SIMPLE_TEXT_CACHE_PATH: Path = CACHE_DIR / ".weather_cache" -CACHE_TTL_SECONDS = int(os.getenv("WEATHER_CACHE_TTL", "600")) # default 10 minutes +CACHE_TTL_SECONDS = int(os.getenv("WEATHER_CACHE_TTL", "300")) # default 5 minutes # Units: metric or imperial (default metric) UNITS = os.getenv("WEATHER_UNITS", "metric").strip().lower() # metric|imperial |
