How To Install budgie-control-center on Ubuntu 22.04

In this tutorial we learn how to install budgie-control-center on Ubuntu 22.04. budgie-control-center is utilities to configure the Budgie desktop

Introduction

In this tutorial we learn how to install budgie-control-center on Ubuntu 22.04.

What is budgie-control-center

budgie-control-center is:

This package contains configuration applets for the Budgie desktop, allowing to set accessibility configuration, desktop fonts, keyboard and mouse properties, sound setup, desktop background, user interface properties, screen resolution, and other Budgie parameters.

This is a fork of gnome-control-center at v41 with gnome-shell specifics removed together with configuration specific to the budgie-desktop.

There are three methods to install budgie-control-center on Ubuntu 22.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 budgie-control-center Using apt-get

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

sudo apt-get update

After updating apt database, We can install budgie-control-center using apt-get by running the following command:

sudo apt-get -y install budgie-control-center

Install budgie-control-center Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install budgie-control-center using apt by running the following command:

sudo apt -y install budgie-control-center

Install budgie-control-center 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 budgie-control-center using aptitude by running the following command:

sudo aptitude -y install budgie-control-center

How To Uninstall budgie-control-center on Ubuntu 22.04

To uninstall only the budgie-control-center package we can use the following command:

sudo apt-get remove budgie-control-center

Uninstall budgie-control-center And Its Dependencies

To uninstall budgie-control-center and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove budgie-control-center

Remove budgie-control-center Configurations and Data

To remove budgie-control-center configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge budgie-control-center

Remove budgie-control-center configuration, data, and all of its dependencies

We can use the following command to remove budgie-control-center configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge budgie-control-center

References

Summary

In this tutorial we learn how to install budgie-control-center package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.