#!/bin/sh
if [ $(light) = 0.00 ]; then
    light -S 0.07;
else
    light -S $(echo 1.122\*$(light) | bc);
fi;