dotfiles/i3/scripts/weather.example

42 lines
1.8 KiB
Bash
Executable File

#!/bin/bash
# Copyright (C) 2016 Ning Sun <sunng@about.me>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
CITY=
APPID=
OUTPUT=$(curl --silent http://api.openweathermap.org/data/2.5/weather\?APPID\=$APPID\&q\=$CITY\&units\=metric)
TEMP=$(echo $OUTPUT | jq -r ".main.temp")
WEATHER=$(echo $OUTPUT | jq -r ".weather[0].main")
case $WEATHER in
"Clear"*)
WEATHER=
echo "<span foreground='#041327' background='black'><span foreground='black' background='#041327'> $WEATHER $TEMP°C</span><span foreground='#61CE3C' background='#041327'> </span>"
;;
"Rain"*)
WEATHER=
echo "<span foreground='#FF1535' background='black'><span foreground='black' background='#FF1535'> $WEATHER $TEMP°C</span><span foreground='#61CE3C' background='#FF1535'> </span>"
;;
"Thunderstorm"*)
WEATHER=
echo "<span foreground='#6E57B3' background='black'><span foreground='black' background='#6E57B3'> $WEATHER $TEMP°C</span><span foreground='#61CE3C' background='#6E57B3'> </span>"
;;
"Clouds"*)
WEATHER=
echo "<span foreground='#7CA6FF' background='black'></span><span foreground='black' background='#7CA6FF'> $WEATHER $TEMP°C</span><span foreground='#61CE3C' background='#7CA6FF'> </span>"
;;
esac