How To Install jwm on Fedora 34

jwm is Joe’s Window Manager

Introduction

In this tutorial we learn how to install jwm on Fedora 34.

What is jwm

JWM is a window manager for the X11 Window System. It’s written in C and uses only Xlib at a minimum. The following libraries can also be used if available * cairo and librsvg2 for SVG icons and backgrounds. * fribidi for bi-directional text support. * libjpeg for JPEG icons and backgrounds. * libpng for PNG icons and backgrounds. * libXext for the shape extension. * libXrender for the render extension. * libXmu for rounded corners. * libXft for anti-aliased and true type fonts. * libXinerama for multiple head support. * libXpm for XPM icons and backgrounds. JWM supports MWM and Extended Window Manager Hints (EWMH). Note that Fedora package is built with all supported features enabled.

We can use yum or dnf to install jwm on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install jwm.

Install jwm on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install jwm using dnf by running the following command:

sudo dnf -y install jwm

Install jwm on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install jwm using yum by running the following command:

sudo yum -y install jwm

How To Uninstall jwm on Fedora 34

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

sudo dnf remove jwm

jwm Package Contents on Fedora 34

/etc/system.jwmrc
/usr/bin/jwm
/usr/lib/.build-id
/usr/lib/.build-id/2c
/usr/lib/.build-id/2c/4256e9cf74172b56aabf0eeabebf42320cf2f9
/usr/share/doc/jwm
/usr/share/doc/jwm/ChangeLog
/usr/share/doc/jwm/README.md
/usr/share/jwm
/usr/share/jwm/jwm-blue.svg
/usr/share/jwm/jwm-gray.svg
/usr/share/jwm/jwm-orange.svg
/usr/share/jwm/jwm.xbm
/usr/share/licenses/jwm
/usr/share/licenses/jwm/LICENSE
/usr/share/locale/da/LC_MESSAGES/jwm.mo
/usr/share/locale/de/LC_MESSAGES/jwm.mo
/usr/share/locale/es/LC_MESSAGES/jwm.mo
/usr/share/locale/fr/LC_MESSAGES/jwm.mo
/usr/share/locale/hu/LC_MESSAGES/jwm.mo
/usr/share/locale/it/LC_MESSAGES/jwm.mo
/usr/share/locale/nl/LC_MESSAGES/jwm.mo
/usr/share/locale/pl/LC_MESSAGES/jwm.mo
/usr/share/locale/pt/LC_MESSAGES/jwm.mo
/usr/share/locale/pt_BR/LC_MESSAGES/jwm.mo
/usr/share/locale/ru/LC_MESSAGES/jwm.mo
/usr/share/locale/zh_CN/LC_MESSAGES/jwm.mo
/usr/share/locale/zh_TW/LC_MESSAGES/jwm.mo
/usr/share/man/man1/jwm.1.gz
/usr/share/xsessions/jwm.desktop

References

Summary

In this tutorial we learn how to install jwm on Fedora 34 using yum and dnf.