How To Install dde-qt5integration on Kali Linux

In this tutorial we learn how to install dde-qt5integration on Kali Linux. dde-qt5integration is Qt5 theme integration for Deepin application

Introduction

In this tutorial we learn how to install dde-qt5integration on Kali Linux.

What is dde-qt5integration

dde-qt5integration is:

Deepin’s qt5integration provides library plugins used by Deepin application and Deepin Desktop Environment. It implements many extra features on top of stock Qt, include hijacking window decoration / shadow painting, better support for cursors under HiDPI, retrieval of full list of windows under current workspace, support for window of arbitrary shape with anti-aliasing and so on, to make Qt5 application and Deepin Desktop Environment more user-friendly.

This package is part of DDE (Deepin Desktop Environment).

There are three methods to install dde-qt5integration on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install dde-qt5integration Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install dde-qt5integration

Install dde-qt5integration Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install dde-qt5integration

Install dde-qt5integration Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install dde-qt5integration

How To Uninstall dde-qt5integration on Kali Linux

To uninstall only the dde-qt5integration package we can use the following command:

sudo apt-get remove dde-qt5integration

Uninstall dde-qt5integration And Its Dependencies

To uninstall dde-qt5integration and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove dde-qt5integration

Remove dde-qt5integration Configurations and Data

To remove dde-qt5integration configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge dde-qt5integration

Remove dde-qt5integration configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge dde-qt5integration

Dependencies

dde-qt5integration have the following dependencies:

References

Summary

In this tutorial we learn how to install dde-qt5integration package on Kali Linux using different package management tools: apt, apt-get and aptitude.