How To Install stumpwm on Debian 12

Learn how to install stumpwm on Debian 12 with this tutorial. stumpwm is tiling, keyboard driven Common Lisp window manager

Introduction

In this tutorial we learn how to install stumpwm on Debian 12.

What is stumpwm

stumpwm is:

StumpWM is a window manager written entirely in Common Lisp. It attempts to be highly customizable while relying entirely on the keyboard for input. You will not find buttons, icons, title bars, tool bars, or any of the other conventional GUI widgets.

These design decisions reflect the growing popularity of productive, customizable lisp based systems.

The suggested package, slime, lets you control a running StumpWM session through Emacs.

If you need Xinerama support, you need the xdpyinfo utility from the x11-utils package.

There are three methods to install stumpwm on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install stumpwm Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install stumpwm

Install stumpwm Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install stumpwm using apt by running the following command:

sudo apt -y install stumpwm

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

sudo aptitude -y install stumpwm

How To Uninstall stumpwm on Debian 12

To uninstall only the stumpwm package we can use the following command:

sudo apt-get remove stumpwm

Uninstall stumpwm And Its Dependencies

To uninstall stumpwm and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove stumpwm

Remove stumpwm Configurations and Data

To remove stumpwm configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge stumpwm

Remove stumpwm configuration, data, and all of its dependencies

We can use the following command to remove stumpwm configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge stumpwm

Dependencies

stumpwm have the following dependencies:

References

Summary

In this tutorial we learn how to install stumpwm package on Debian 12 using different package management tools: apt, apt-get and aptitude.