#!/bin/bash
now=`xdark`
if [ "$now" = "0.00 1.00" ]; then
	xdark 1 0
elif [ "$now" = "1.00 0.00" ]; then
	xdark 0.7
elif [ "$now" = "0.00 0.70" ]; then
	xdark 0.7 0
elif [ "$now" = "0.70 0.00" ]; then
	xdark 0.4
elif [ "$now" = "0.00 0.40" ]; then
	xdark 0.4 0
#elif [ "$now" = "0.30 0.00" ]; then
#	xdark 0.2
#elif [ "$now" = "0.00 0.20" ]; then
#	xdark 0.2 0
else
	xdark 1
fi
