1
1
mirror of https://github.com/nboughton/dotfiles synced 2024-11-23 09:02:00 +01:00
github.com-nboughton-dotfiles/waybar/modules/weather.sh
2021-03-18 11:46:27 +00:00

7 lines
167 B
Bash
Executable File

#!/bin/bash
report=$(curl -q wttr.in/?format="%c+%t" 2>/dev/null)
if [[ $report =~ "Unknown location" || $report =~ "Sorry" ]]; then
report="No data"
fi
echo $report