#!/bin/bash
pid=$(ps aux | grep '/forecast.conky' | grep -v 'grep' | awk '{print $2}')
if [ "$pid" != "" ]; then
  kill -s 9 $pid
  sleep 1
else
  conky -c ./forecast.conky &
  sleep 1
fi
exit 0
