diff options
| author | Prabin Panta <pantaprabin30@gmail.com> | 2025-10-27 11:46:38 +0545 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-27 11:46:38 +0545 |
| commit | a8b355b490d6f0d4e5e5e219426ddffd26ca19f1 (patch) | |
| tree | 62fc5990d1327359ac07b1c3c2537d39ad3d8f4c /config | |
| parent | c47eadb340dcdea51587537f4237f347653cb675 (diff) | |
Update config/hypr/UserScripts/Weather.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Diffstat (limited to 'config')
| -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 2a3e0ad2..ee861ebb 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -74,7 +74,7 @@ MANUAL_PLACE: Optional[str] = None # Location icon in tooltip (default to a standard emoji to avoid missing glyphs) LOC_ICON = os.getenv("WEATHER_LOC_ICON", "📍") # Enable/disable Pango markup in tooltip (1/0, true/false) -TOOLTIP_MARKUP = os.getenv("WEATHER_TOOLTIP_MARKUP", "0").lower() not in ("0", "false", "no") +TOOLTIP_MARKUP = os.getenv("WEATHER_TOOLTIP_MARKUP", "0").lower() in ("1", "true", "yes") # Optional debug logging to stderr (set WEATHER_DEBUG=1 to enable) DEBUG = os.getenv("WEATHER_DEBUG", "0").lower() not in ("0", "false", "no") |
