How To Install redshift on CentOS 7

In this tutorial we learn how to install redshift on CentOS 7. redshift is Adjusts the color temperature of your screen according to time of

Introduction

In this tutorial we learn how to install redshift on CentOS 7.

What is redshift

Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night. The color temperature is set according to the position of the sun. A different color temperature is set during night and daytime. During twilight and early morning, the color temperature transitions smoothly from night to daytime temperature to allow your eyes to slowly adapt. This package provides the base program.

We can use yum or dnf to install redshift on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install redshift.

Install redshift on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install redshift using yum by running the following command:

sudo yum -y install redshift

Install redshift on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install redshift using dnf by running the following command:

sudo dnf -y install redshift

How To Uninstall redshift on CentOS 7

To uninstall only the redshift package we can use the following command:

sudo dnf remove redshift

References

Summary

In this tutorial we learn how to install redshift on CentOS 7 using yum and dnf.