summaryrefslogtreecommitdiff
path: root/wrocwttr
blob: 4aa5b3a596839f5ec86332a7d0946614cfb4d3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# export DISPLAY=:0.0
# export HOME=/home/filipek

# ł is URL-encoded
temp=$(curl "wttr.in/Wroc%C5%82aw?format=1" | awk '{print $2}')
file="$HOME/.cache/weather/wroc.txt"
[ -z "$temp" ] && exit 1

echo "$temp" > "$file"
# notify-send "Temperature updated."