Install Redshift in Ubuntu

With Redshift, we can set color temperatures as per our requirements. The package is available in Ubuntu’s repository. Before proceeding with its installation process and its use, we discuss a bit about color temperatures. In 1848, William Kelvin heated a block of carbon while doing a research and observed the color changes at different levels of temperature. At lower temperatures, red color was detected which later progressed to yellow and blue as the temperature increased. Ultimately, white color was detected at the highest temperatures. Warmer colors – red and yellow are in the range of 2000K to 3000K whereas Cooler colors – blue and white are in the range of 5500K to 6500K. In this article, we would discuss how to install Redshift in Ubuntu distribution.

Note: Following operations would require you to have superuser privileges. In case you don’t have one, then contact your System Administrator for assistance.

Install Redshift in Ubuntu Distribution

Redshift package is already available in default Ubuntu repository. Hence, open a terminal and issue the following –

sudo apt update
sudo apt install redshift redshift-gtk

It installs Redshift package. Next, we will discuss how to set up its configuration.

Configure Redshift

With Redshift package, we can set color temperature depending on whether its day or night. During early morning or in twilight hours, the package enters a transition phase wherein gradual changes occur in color temperatures. Thereby, making the user adapt to changes with minimal discomfort.

The default temperature value during daytime is 6500K and at night its 4500K. To set the color temperature as per our requirements, look for its configuration file –

~/.config/redshift.conf

The default configuration file may resemble –

[redshift]
temp-day=3500
temp-night=3000
location-provider=manual
transition=1

[manual]
lat=40.7
lon=74.0

where,
temp-day is daytime temperature,
temp-night is night temperature,
transition for smooth transition between daytime and night color temperature. 1 – enable, 0 – disable, and
location-provider is set to manual and latitude and longitude positions are provided below, values could also be geoclue/geoclue2.

Apart from the above mentioned options you could also set values for gamma, dawn-time, dusk-time, screen brightness for day and night etc. All these options and their syntax would be discussed next.

To set screen brightness at daytime –

brightness-day = 0.1 to 1.0

To set screen brightness at night –

brightness-night = 0.1 to 1.0

Both dusk-time as well as dawn-time need to be specified together. This provides the time period for transition from day to night and vice versa.

dusk-time = HH:MM
dawn-time = HH:MM

To adjust Gamma for day & night –

gamma = R:G:B

Adjust Gamma only for day –

gamma-day = R:G:B

To adjust Gamma only for night –

gamma-night = R:G:B

Apart from the command-line utility for redshift, you would also notice that we have installed the package redshift-gtk. The package provides us the GUI for Redshift, a notification icon. Although we can enable/disable, suspend, autostart and get information about our configuration from the icon itself. But, we can do more by editing configuration file rather than solely relying on its graphical user interface.

In conclusion, we have discussed how to adjust color temperatures using the package redshift in Ubuntu distribution.

Similar Posts