blob: 0333af33c4db2841ee549c90bd9e7fa56da0c704 (
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"\"}"
|