How To Install elpa-rich-minority on Kali Linux
Introduction
In this tutorial we learn how to install elpa-rich-minority
on Kali Linux.
What is elpa-rich-minority
elpa-rich-minority is:
Rich-minority-mode is used for hiding and/or highlighting the list of minor-modes in the mode-line. It is a more full-featured alternative to diminish.el, and supports configuration using lists and regular expressions by customising these three variables:
rm-blacklist: List of minor mode names that will be hidden from the minor-modes list. Use this to hide only a few modes that are always active and don??t really contribute information.
rm-whitelist: List of minor mode names that are allowed on the minor-modes list. Use this to hide all but a few modes.
rm-text-properties: List text properties to apply to each minor-mode lighter. For instance, by default Ovwrt is highlighted with a red face, so you always know if you??re in overwrite-mode.
There are three methods to install elpa-rich-minority
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 elpa-rich-minority Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install elpa-rich-minority
using apt-get
by running the following command:
sudo apt-get -y install elpa-rich-minority
Install elpa-rich-minority Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install elpa-rich-minority
using apt
by running the following command:
sudo apt -y install elpa-rich-minority
Install elpa-rich-minority 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 elpa-rich-minority
using aptitude
by running the following command:
sudo aptitude -y install elpa-rich-minority
How To Uninstall elpa-rich-minority on Kali Linux
To uninstall only the elpa-rich-minority
package we can use the following command:
sudo apt-get remove elpa-rich-minority
Uninstall elpa-rich-minority And Its Dependencies
To uninstall elpa-rich-minority
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove elpa-rich-minority
Remove elpa-rich-minority Configurations and Data
To remove elpa-rich-minority
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge elpa-rich-minority
Remove elpa-rich-minority configuration, data, and all of its dependencies
We can use the following command to remove elpa-rich-minority
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge elpa-rich-minority
Dependencies
elpa-rich-minority have the following dependencies:
References
Summary
In this tutorial we learn how to install elpa-rich-minority
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.