How To Install xfce4-goodies on Debian 11
Introduction
In this tutorial we learn how to install xfce4-goodies
on Debian 11.
What is xfce4-goodies
xfce4-goodies is:
The “Goodies for Xfce” project includes additional software and artwork that are related to the Xfce desktop, but not part of the official release.
This package will install the following Xfce4 related plugins:
- Extra artwork (xfce4-artwork)
- Battery levels monitor (xfce4-battery-plugin)
- Clipboard history (xfce4-clipman-plugin)
- CPU frequency management plugin (xfce4-cpufreq-plugin)
- CPU utilisation graphs (xfce4-cpugraph-plugin)
- Date and time plugin (xfce4-datetime-plugin)
- Disk performance display (xfce4-diskperf-plugin)
- Filesystem monitor (xfce4-fsguard-plugin)
- Generic monitor, for displaying any command result (xfce4-genmon-plugin)
- Mail watcher (xfce4-mailwatch-plugin)
- Network load monitor (xfce4-netload-plugin)
- Notes plugin (xfce4-notes-plugin)
- Quick access to bookmarked folders, recent documents and removable media (xfce4-places-plugin)
- Sensors plugin, frontend to lm-sensors (xfce4-sensors-plugin)
- Smartbookmarks plugin (xfce4-smartbookmark-plugin)
- System load monitor (xfce4-systemload-plugin)
- Timer plugin (xfce4-timer-plugin)
- Command line with history (xfce4-verve-plugin)
- Wireless lan monitor (xfce4-wavelan-plugin)
- Weather monitor (xfce4-weather-plugin)
- Keyboard configuration (xfce4-xkb-plugin)
- Archive management for Thunar (thunar-archive-plugin)
- Media tags editor for Thunar (thunar-media-tags-plugin)
- Alternate menu plugin (xfce4-whiskermenu-plugin)
It’ll install some standalone applications too:
- Tiny text editor (mousepad)
- Images viewer (ristretto)
- CD/DVD burner (xfburn)
- Frontend to dictionaries (xfce4-dict)
- Notification daemon (xfce4-notifyd)
- Tool to take screenshots (xfce4-screenshooter)
- Task manager (xfce4-taskmanager)
- Terminal emulator (xfce4-terminal)
Some packages are only suggested because they bring too much dependencies, but you may find them interesting:
- Cellular modem plugin (xfce4-cellmodem-plugin)
- Indicator (conform to the Ubuntu MessagingMenu specification) plugin (xfce4-indicator-plugin)
- Another commandline plugin (xfce4-minicmd-plugin)
- Frontends to MPD (xfce4-mpc-plugin, xfmpc)
- Radio plugin (xfce4-radio-plugin))
- GIO/GVfs frontend to manage connections to remote filesystems (gigolo)
- Media player (parole)
- Power Manager (xfce4-power-manager)
This is a metapackage to ease upgrades, installations, and provide a consistent upgrade path from previous versions. It can safely be removed with no ill effects.
There are three methods to install xfce4-goodies
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 xfce4-goodies Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install xfce4-goodies
using apt-get
by running the following command:
sudo apt-get -y install xfce4-goodies
Install xfce4-goodies Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install xfce4-goodies
using apt
by running the following command:
sudo apt -y install xfce4-goodies
Install xfce4-goodies 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 xfce4-goodies
using aptitude
by running the following command:
sudo aptitude -y install xfce4-goodies
How To Uninstall xfce4-goodies on Debian 11
To uninstall only the xfce4-goodies
package we can use the following command:
sudo apt-get remove xfce4-goodies
Uninstall xfce4-goodies And Its Dependencies
To uninstall xfce4-goodies
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove xfce4-goodies
Remove xfce4-goodies Configurations and Data
To remove xfce4-goodies
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge xfce4-goodies
Remove xfce4-goodies configuration, data, and all of its dependencies
We can use the following command to remove xfce4-goodies
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge xfce4-goodies
Dependencies
xfce4-goodies have the following dependencies:
- mousepad
- ristretto
- thunar-archive-plugin
- thunar-media-tags-plugin
- xfburn
- xfce4-battery-plugin
- xfce4-clipman-plugin
- xfce4-cpufreq-plugin
- xfce4-cpugraph-plugin
- xfce4-datetime-plugin
- xfce4-dict
- xfce4-diskperf-plugin
- xfce4-fsguard-plugin
- xfce4-genmon-plugin
- xfce4-mailwatch-plugin
- xfce4-netload-plugin
- xfce4-notifyd
- xfce4-places-plugin
- xfce4-screenshooter
- xfce4-sensors-plugin
- xfce4-smartbookmark-plugin
- xfce4-systemload-plugin
- xfce4-taskmanager
- xfce4-terminal
- xfce4-timer-plugin
- xfce4-verve-plugin
- xfce4-wavelan-plugin
- xfce4-weather-plugin
- xfce4-whiskermenu-plugin
- xfce4-xkb-plugin
References
Summary
In this tutorial we learn how to install xfce4-goodies
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.