#!/bin/bash
#############################
#                           #
#  Restarts forecast.conky  #
#                           #
#############################
if [ -f "../settings.ini" ]; then
  echo -e "\n$(basename $0): \e[31mOnly works when started via conky!\e[m\n" > /dev/stderr
  exit
fi
pkill -f forecast.conky
sleep 2
conky -c ./forecast.conky
