Add set_warmth, a script to somewhat intelligently set your screen temperature.

This commit is contained in:
Mid Favila 2022-03-08 21:08:11 -04:00
parent 2b966da04c
commit 03b94341fd
1 changed files with 11 additions and 0 deletions

11
set_warmth Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh -e
x=$(date|cut -f5 -d' '|cut -f1 -d:)
brownout $(bc -e "define redlevel(x) {
if((x-12) <= 0)
return((83*(12-x)))
else
return((83*(x-12)))
} redlevel($x)")