#!/bin/sh

# click to start, click to stop

if pidof xflux | grep [0-9] > /dev/null
then
 exec killall xflux
else
 exec /opt/xflux/xflux-run
fi
