How To Install taffybar on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 394 words
Introduction
In this tutorial we learn how to install taffybar on Ubuntu.
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 Ubuntu. 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 update
After updating apt database, We can install taffybar using apt-get by running the following command:
sudo apt-get -y install taffybar
Install taffybar Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install taffybar using apt by running the following command:
sudo apt -y install taffybar
Install taffybar 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 Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install taffybar using aptitude by running the following command:
sudo aptitude -y install taffybar
How To Uninstall taffybar on Ubuntu
To uninstall only the taffybar package we can use the following command:
sudo apt-get remove taffybar
Uninstall taffybar And Its Dependencies
To uninstall taffybar and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove taffybar
Remove taffybar Configurations and Data
To remove taffybar configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge taffybar
Remove 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 taffybar
Dependencies
taffybar have the following dependencies:
- libatk1.0-0
- libc6
- libcairo-gobject2
- libcairo2
- libdbusmenu-glib4
- libdbusmenu-gtk3-4
- libffi8
- libgdk-pixbuf-2.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 Ubuntu using different package management tools: apt, apt-get and aptitude.