How To Install geany-themes on CentOS 7

In this tutorial we learn how to install geany-themes on CentOS 7. geany-themes is A collection of syntax highlighting color schemes for Geany

Introduction

In this tutorial we learn how to install geany-themes on CentOS 7.

What is geany-themes

Geany-Themes is a set of syntax highlighting color schemes for the Geany IDE. Simply install this package, restart Geany and find the themes in View->Editor->Color Schemes.

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

Install geany-themes on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install geany-themes using yum by running the following command:

sudo yum -y install geany-themes

Install geany-themes 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 geany-themes using dnf by running the following command:

sudo dnf -y install geany-themes

How To Uninstall geany-themes on CentOS 7

To uninstall only the geany-themes package we can use the following command:

sudo dnf remove geany-themes

References

Summary

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