dotfiles/omarchy/hooks/post-boot.d/weather.sample

11 lines
292 B
Text
Raw Permalink Normal View History

2026-05-18 13:35:54 +00:00
#!/bin/bash
# Show the weather status notification after Omarchy has started.
# To put it into use, remove .sample from this file name.
weather=$(omarchy-weather-status 2>/dev/null) || true
if [[ -n $weather && $weather != "Weather unavailable" ]]; then
notify-send -u low "$weather"
fi