How To Install budgie-recentlyused-applet on Debian 11
Introduction
In this tutorial we learn how to install budgie-recentlyused-applet
on Debian 11.
What is budgie-recentlyused-applet
budgie-recentlyused-applet is:
This is part of a suite of python3 and Vala based applets for the Budgie Desktop that provide additional user orientated capabilities. The applets can be used individually or as a set.
The recentlyused applet displays the users files that have been opened or created within a configurable period of time.
There are three methods to install budgie-recentlyused-applet
on Debian 11. 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-recentlyused-applet 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-recentlyused-applet
using apt-get
by running the following command:
sudo apt-get -y install budgie-recentlyused-applet
Install budgie-recentlyused-applet Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install budgie-recentlyused-applet
using apt
by running the following command:
sudo apt -y install budgie-recentlyused-applet
Install budgie-recentlyused-applet 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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install budgie-recentlyused-applet
using aptitude
by running the following command:
sudo aptitude -y install budgie-recentlyused-applet
How To Uninstall budgie-recentlyused-applet on Debian 11
To uninstall only the budgie-recentlyused-applet
package we can use the following command:
sudo apt-get remove budgie-recentlyused-applet
Uninstall budgie-recentlyused-applet And Its Dependencies
To uninstall budgie-recentlyused-applet
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove budgie-recentlyused-applet
Remove budgie-recentlyused-applet Configurations and Data
To remove budgie-recentlyused-applet
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge budgie-recentlyused-applet
Remove budgie-recentlyused-applet configuration, data, and all of its dependencies
We can use the following command to remove budgie-recentlyused-applet
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge budgie-recentlyused-applet
Dependencies
budgie-recentlyused-applet have the following dependencies:
- budgie-extras-common
- xdg-utils
- dconf-gsettings-backend
- libbudgie-plugin0
- libc6
- libgee-0.8-2
- libglib2.0-0
- libgtk-3-0
- libpeas-1.0-0
References
Summary
In this tutorial we learn how to install budgie-recentlyused-applet
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.