#!/bin/sh

COLORSCHEME="dark"

if [ -f $HOME/.cache/colorscheme ]; then
	. $HOME/.cache/colorscheme
fi

case $COLORSCHEME in
	dark)
		COLORSCHEME="light" ;;
	*)
		COLORSCHEME="dark" ;;
esac

echo "export COLORSCHEME=$COLORSCHEME" > $HOME/.cache/colorscheme
pkill -SIGUSR1 zsh