How To Install ubuntume-themes on Ubuntu 18.04

In this tutorial we learn how to install ubuntume-themes on Ubuntu 18.04. ubuntume-themes is Sabily themes (transitional package)

Introduction

In this tutorial we learn how to install ubuntume-themes on Ubuntu 18.04.

What is ubuntume-themes

ubuntume-themes is:

The default HumanME theme. At the moment the package contains:

  • The theme definitions
  • Metacity theme elements
  • The icon theme
  • green-human and HumanME GTK+ themes
  • Animated cursor themes . This is a dummy transitional package that will ensure a proper upgrade path. This package may be safely removed after upgrading.

There are three methods to install ubuntume-themes on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install ubuntume-themes Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install ubuntume-themes using apt-get by running the following command:

sudo apt-get -y install ubuntume-themes

Install ubuntume-themes Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ubuntume-themes

Install ubuntume-themes Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install ubuntume-themes using aptitude by running the following command:

sudo aptitude -y install ubuntume-themes

How To Uninstall ubuntume-themes on Ubuntu 18.04

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

sudo apt-get remove ubuntume-themes

Uninstall ubuntume-themes And Its Dependencies

To uninstall ubuntume-themes and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove ubuntume-themes

Remove ubuntume-themes Configurations and Data

To remove ubuntume-themes configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge ubuntume-themes

Remove ubuntume-themes configuration, data, and all of its dependencies

We can use the following command to remove ubuntume-themes configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ubuntume-themes

References

Summary

In this tutorial we learn how to install ubuntume-themes package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.