A simple tutorial explaining how you can easily install and configure the IceWM in Arch Linux systems.
Table of Contents
About IceWM & its features: Quick Highlights
IceWM is a lightweight window manager for the X Window system, written in C++. This window manager is more than two decades old (the first release was in 1997) and is still in active development!
The most sought-after feature of IceWM is its low system resource usage and simplicity. Although all the window managers are more-or-less lightweight than all the desktop environments.
Before installing IceWM, you should know its headline features.
- Lightweight and straightforward to use
- Low learning curve (for those coming from desktop environments)
- Dynamic menu
- Per-window Keybinding
- Alt+Tab support for window switching
- Multiple workspaces
- Mouse support (configurable)
- A vast collection of community-developed theme
- Multi-focus mode
You can learn more about its feature on the official home page.
Now, let’s see how you can install it.
How to Install IceWM in Arch Linux
1. Install Base Arch Linux
Since you are trying to install it in Arch Linux, I assume you already have an Arch setup ready. If you don’t, you can read this guide on installing Arch Linux using a simple and easy-to-use guide via archinstall.
Moreover, if you don’t want to install Arch, you can download EndeavourOS or any Arch-based distro ISO and install it.
And then, you can follow the below instructions to install IceWM on top of any DE such as KDE, Xfce, GNOME, etc.
2. Set up Yay – Aur helper
The main icewm package is present in the Arch main repo. But the associated packages, such as themes, etc., are present in Arch User Repository (AUR). So, let’s install an AUR helper (such as Yay).
You can refer to my guide to install Yay, OR follow the below commands to install.
Use the following command in sequence to install the required packages and clone the GIT repo of Yay.
sudo pacman -S base-devel
sudo pacman -S git
cd /opt
sudo git clone https://aur.archlinux.org/yay.git
After the above commands are complete, change the owner of the source directory. Replace “debugpoint” with your user name. And follow the below commands in sequence.
sudo chown -R debugpoint:users ./yay
cd yay
makepkg -si
This will complete the installation of Yay – AUR helper.
3. Install IceWM
Firstly, install the icewm package & a file manager (optional) using the below command.
pacman -S icewm pcmanfm
Now install the following packages via Yay, which is for several themes, utilities and putting icons on the desktop.
yay -S icewm-themes idesk icewm-utils
If you are installing IceWM on a bare metal system, then install Xorg and display manager. This step is not required if you are installing on top of any Arch distro.
pacman -S xorg lightdm lightdm-gtk-greeter systemctl enable lightdm
Now, as a final step you can reboot your system. After reboot, choose IceWM from the login screen.
And you should be greeted with a nice and sleek IceWM desktop.
Configuration
Since its not desktop environment, there are some additional configuration you may want to do. Here’s some of the important onces. Choose the items which best fit for your use case.
- Configuration for users: If you want to configure IceWM for a specific user, create a directory and them copy the config files to that newly created folder. You can achieve this using the following commands.
mkdir ~/.icewm/
cp -R /usr/share/icewm/* ~/.icewm/
- Enabling USB automount: You can enable USB automount by installing the following package via Yay helper.
yay -S usbmount
- Wallpaper: Install feh utility using the following command to easily manage wallpaper in IceWM.
pacman -S feh
- IceWM Preferences: Most of the settings are available in the
~/.icewm/preferences
file. You can set or unset any value you want. - Changing Themes: To change themes you can navigate via Launcher
Menu > Settings > Themes
.
Wrapping Up
In this article, you learned how to install IceWM in Arch Linux (vanilla or on top of any distro). Also you learned the necessary configuration for IceWM. I hope this guide helps you to configure a nice and simple IceWM system in Arch for your daily use.