How To Install taffybar on Kali Linux
Introduction
In this tutorial we learn how to install taffybar on Kali Linux.
What is taffybar
taffybar is:
This bar is based on gtk2hs and provides several widgets (including a few graphical ones). It also sports an optional snazzy system tray.
This package comes pre-configured with the default configuration. If you want to build your custom-configured version, make sure that libghc-taffybar-dev is installed and put your configuration in ~/.config/taffybar/taffybar.hs
There are three methods to install taffybar 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 taffybar Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install taffybar using apt-get by running the following command:
sudo apt-get -y install taffybarInstall taffybar Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install taffybar using apt by running the following command:
sudo apt -y install taffybarInstall taffybar 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 updateAfter updating apt database, We can install taffybar using aptitude by running the following command:
sudo aptitude -y install taffybarHow To Uninstall taffybar on Kali Linux
To uninstall only the taffybar package we can use the following command:
sudo apt-get remove taffybarUninstall taffybar And Its Dependencies
To uninstall taffybar and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove taffybarRemove taffybar Configurations and Data
To remove taffybar configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge taffybarRemove taffybar configuration, data, and all of its dependencies
We can use the following command to remove taffybar configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge taffybarDependencies
taffybar have the following dependencies:
- libatk1.0-0
- libc6
- libcairo-gobject2
- libcairo2
- libdbusmenu-glib4
- libdbusmenu-gtk3-4
- libffi7
- libgdk-pixbuf2.0-0
- libgirepository-1.0-1
- libglib2.0-0
- libgmp10
- libgtk-3-0
- libharfbuzz-gobject0
- libharfbuzz0b
- libpango-1.0-0
- libpangocairo-1.0-0
- libx11-6
- libxext6
- libxinerama1
- libxrandr2
References
Summary
In this tutorial we learn how to install taffybar package on Kali Linux using different package management tools: apt, apt-get and aptitude.