blob: d64acd00d9943460263ed3c6ddd50e5b67f18de4 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
w=$(curl -s wttr.in/ahn?format="%l:+%c+%t+%C+%w+%h+%m")
w=${w:7}
w="$(echo -e "${w}" | sed -e 's/^[[:space:]]*//')"
m=$(python ~/bin/moonphase-waybar.py)
echo "{\"text\":\""$w ""$m"\", \"tooltip\":\""tooltip"\", \"class\":\""lxf-weather"\"}"
|