How To Install tmux-themepack-jimeh on Kali Linux

In this tutorial we learn how to install tmux-themepack-jimeh on Kali Linux. tmux-themepack-jimeh is pack of various themes for tmux by jimeh

Introduction

In this tutorial we learn how to install tmux-themepack-jimeh on Kali Linux.

What is tmux-themepack-jimeh

tmux-themepack-jimeh is:

basic theme and powerline themes for tmux.

The fonts-powerline package is required on your local machine in order to render the powerline glyphs properly.

To enable a theme, you can add a line like the following to your .tmux.conf:

source-file “/usr/share/tmux/theme-pack-jimeh/powerline/double/cyan.tmuxtheme”

You can substitute ‘cyan’ with blue, gray, green, magenta, orange, red or yellow.

You can also substitute ‘double’ with ‘block’ to have straight lines on the window list.

There are three methods to install tmux-themepack-jimeh 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 tmux-themepack-jimeh Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install tmux-themepack-jimeh using apt-get by running the following command:

sudo apt-get -y install tmux-themepack-jimeh

Install tmux-themepack-jimeh Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install tmux-themepack-jimeh using apt by running the following command:

sudo apt -y install tmux-themepack-jimeh

Install tmux-themepack-jimeh 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 tmux-themepack-jimeh using aptitude by running the following command:

sudo aptitude -y install tmux-themepack-jimeh

How To Uninstall tmux-themepack-jimeh on Kali Linux

To uninstall only the tmux-themepack-jimeh package we can use the following command:

sudo apt-get remove tmux-themepack-jimeh

Uninstall tmux-themepack-jimeh And Its Dependencies

To uninstall tmux-themepack-jimeh and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove tmux-themepack-jimeh

Remove tmux-themepack-jimeh Configurations and Data

To remove tmux-themepack-jimeh configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge tmux-themepack-jimeh

Remove tmux-themepack-jimeh configuration, data, and all of its dependencies

We can use the following command to remove tmux-themepack-jimeh configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge tmux-themepack-jimeh

Dependencies

tmux-themepack-jimeh have the following dependencies:

References

Summary

In this tutorial we learn how to install tmux-themepack-jimeh package on Kali Linux using different package management tools: apt, apt-get and aptitude.