How To Install lisgd on Debian 12

Learn how to install lisgd on Debian 12 with this tutorial. lisgd is libinput synthetic gesture daemon

Introduction

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

What is lisgd

lisgd is:

Lisgd lets you bind gestures based on libinput touch events to run specific commands to execute. For example, dragging left to right with one finger could execute a particular command like launching a terminal. Directional L-R, R-L, U-D, and D-U gestures and diagnol LD-RU, RD-LU, UR-DL, UL-DR gestures are supported with 1 through n fingers.

Unlike other libinput gesture daemons, lisgd uses touch events to recognize synthetic swipe gestures rather than using the libinput’s gesture events. The advantage of this is that the synthetic gestures you define via lisgd can be used on touchscreens, which normal libinput gestures don’t support.

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

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

sudo apt-get update

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

sudo apt-get -y install lisgd

Install lisgd Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install lisgd

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

sudo aptitude -y install lisgd

How To Uninstall lisgd on Debian 12

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

sudo apt-get remove lisgd

Uninstall lisgd And Its Dependencies

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

sudo apt-get -y autoremove lisgd

Remove lisgd Configurations and Data

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

sudo apt-get -y purge lisgd

Remove lisgd configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge lisgd

Dependencies

lisgd have the following dependencies:

References

Summary

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