Free Software Alternative to f.lux

2 respuestas [Último envío]
afleck
Desconectado/a
se unió: 03/02/2015

Hi all,

I've really grown to like f.lux (justgetflux.com) however, it is not free software. Does anyone know of similar software?

Thanks,
A. Fleckenstein

Legimet
Desconectado/a
se unió: 12/10/2013

Try redshift. It's in the Trisquel repository.

marioxcc
Desconectado/a
se unió: 08/13/2014

For active LCD, you can set the brightness manually with “xbacklight -steps 1 -set BRIGHTNESS” I use “light BRIGHTNESS”. I have the following lines in my .bashrc:

function light () {
if [ $# == 1 ]; then
xbacklight -steps 1 -set $1
elif [ $# == 0 ]; then
xbacklight
fi
}

The scale goes from 0 to 100. Typing “light” in the command line prompt will give you the current brightness.

I believe this chunk of code is not copyrightable due to triviality, but for the avoidance of doubt: I hereby place it in the public domain under the terms of the Creative Commons CC0 public domain dedication. Note: I'm not a supporter of public domain or permissive licenses for non-trivial works.