How To Install awesome on Debian 9
Introduction
In this tutorial we learn how to install awesome
on Debian 9.
What is awesome
awesome is:
awesome manages windows dynamically in floating or tiled layouts. It is primarily targeted at power users, developers, and all those dealing with everyday computing tasks and looking for fine-grained control over their graphical environment.
It is highly extensible and scriptable via the Lua programming language, providing an easy-to-use and very well documented API to configure its behavior.
awesome uses tags instead of workspaces, which gives better flexibility in displaying windows, and can be entirely keyboard-driven, not needing a mouse. It also supports multi-headed configurations; uses XCB instead of Xlib for better performance; implements many freedesktop standards; and can be controlled over D-Bus from awesome-client.
There are three methods to install awesome
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install awesome Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install awesome
using apt-get
by running the following command:
sudo apt-get -y install awesome
Install awesome Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install awesome
using apt
by running the following command:
sudo apt -y install awesome
Install awesome 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 awesome
using aptitude
by running the following command:
sudo aptitude -y install awesome
How To Uninstall awesome on Debian 9
To uninstall only the awesome
package we can use the following command:
sudo apt-get remove awesome
Uninstall awesome And Its Dependencies
To uninstall awesome
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove awesome
Remove awesome Configurations and Data
To remove awesome
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge awesome
Remove awesome configuration, data, and all of its dependencies
We can use the following command to remove awesome
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge awesome
Dependencies
awesome have the following dependencies:
- libc6
- libcairo2
- libdbus-1-3
- libgdk-pixbuf2.0-0
- libglib2.0-0
- liblua5.1-0
- libstartup-notification0
- libx11-6
- libxcb-cursor0
- libxcb-icccm4
- libxcb-keysyms1
- libxcb-randr0
- libxcb-render0
- libxcb-shape0
- libxcb-util0
- libxcb-xinerama0
- libxcb-xkb1
- libxcb-xrm0
- libxcb-xtest0
- libxcb1
- libxdg-basedir1
- libxkbcommon-x11-0
- libxkbcommon0
- menu
- dbus-x11
- lua-lgi
- gir1.2-freedesktop
- gir1.2-pango-1.0
References
Summary
In this tutorial we learn how to install awesome
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.