How To Install openbox on Ubuntu 20.04

In this tutorial we learn how to install openbox on Ubuntu 20.04. openbox is standards-compliant, fast, light-weight and extensible window manager standards-compliant, fast, light-weight and extensible window manager

Introduction

In this tutorial we learn how to install openbox on Ubuntu 20.04.

What is openbox

openbox is:

Openbox works with your applications, and makes your desktop easier to manage. This is because the approach to its development was the opposite of what seems to be the general case for window managers. Openbox was written first to comply with standards and to work properly. Only when that was in place did the team turn to the visual interface.

Openbox is fully functional as a stand-alone working environment, or can be used as a drop-in replacement for the default window manager in the GNOME or KDE desktop environments.

Openbox 3 is a completely new breed of window manager. It is not based upon any existing code base, although the visual appearance has been based upon that of Blackbox. Openbox 2 was based on the Blackbox 0.65.0 codebase.

Some of the things to look for in Openbox are:

  • ICCCM and EWMH compliance!
  • Very fast
  • Chainable key bindings
  • Customizable mouse actions
  • Window resistance
  • Multi-head Xinerama support!
  • Pipe menus Task: lubuntu-desktop

Package: openbox Architecture: amd64 Version: 3.6.1-9 Priority: optional Section: universe/x11 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Mateusz Łukasik [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1254 Provides: x-session-manager, x-window-manager Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.35.9), libice6 (>= 1:1.0.0), libobrender32v5 (>= 3.6.0), libobt2v5 (>= 3.6.0), libsm6, libstartup-notification0 (>= 0.7), libx11-6, libxau6, libxcursor1 (» 1.1.2), libxext6, libxi6 (>= 2:1.2.99.4), libxinerama1, libxrandr2, python3 Recommends: obconf | obconf-qt, obsession, scrot Suggests: fonts-dejavu, libxml2-dev, tint2, openbox-gnome-session (= 3.6.1-9), openbox-kde-session (= 3.6.1-9) Breaks: openbox-theme-breeze (« 1.0) Filename: pool/universe/o/openbox/openbox_3.6.1-9_amd64.deb Size: 274348 MD5sum: 03484b2d0eba7649b9d30c14c6f7d093 SHA1: fbaf373ba8bd7ac64d1077079bfe5bdbe8fab0b7 SHA256: 1f77275f46ceaa8121184f60c5cc442556ead81221e61879f6babde56f798fa9 Homepage: http://www.openbox.org Description-en: standards-compliant, fast, light-weight and extensible window manager Openbox works with your applications, and makes your desktop easier to manage. This is because the approach to its development was the opposite of what seems to be the general case for window managers. Openbox was written first to comply with standards and to work properly. Only when that was in place did the team turn to the visual interface.

Openbox is fully functional as a stand-alone working environment, or can be used as a drop-in replacement for the default window manager in the GNOME or KDE desktop environments.

Openbox 3 is a completely new breed of window manager. It is not based upon any existing code base, although the visual appearance has been based upon that of Blackbox. Openbox 2 was based on the Blackbox 0.65.0 codebase.

Some of the things to look for in Openbox are:

  • ICCCM and EWMH compliance!
  • Very fast
  • Chainable key bindings
  • Customizable mouse actions
  • Window resistance
  • Multi-head Xinerama support!
  • Pipe menus Task: lubuntu-desktop

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

Install openbox Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install openbox

Install openbox Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install openbox

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

sudo aptitude -y install openbox

How To Uninstall openbox on Ubuntu 20.04

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

sudo apt-get remove openbox

Uninstall openbox And Its Dependencies

To uninstall openbox and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove openbox

Remove openbox Configurations and Data

To remove openbox configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge openbox

Remove openbox configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge openbox

References

Summary

In this tutorial we learn how to install openbox package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.