aboutsummaryrefslogtreecommitdiff
path: root/home/.config/i3/lightup
blob: 710492368481587d9d65649655aca85c344915ff (plain)
1
2
3
4
5
6
#!/bin/sh
if [ $(light) = 0.00 ]; then
    light -S 0.07;
else
    light -S $(echo 1.122\*$(light) | bc);
fi;