#!/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."