summaryrefslogtreecommitdiff
path: root/weatherbar.sh
blob: 781fd356f6e6b045918661a3ad4b7cfe26d86a5b (plain)
1
2
3
4
5
#!/bin/sh
temp=`weather --headers="Temperature" -q | awk '/Temperature/ {print $2}'`
cond=`weather --headers="Sky conditions" -q | awk '/Sky conditions/ {print $3 " " $4}'`

echo "$temp °C $cond"