What good is having a large display if you’re constantly rearranging windows to fit them on the screen? I got tired of try to fit a
web browser with other smaller windows and decided to try
xmonad, a tiling window manager that could do this for me.
A tiling window manager arranges your windows in a grid. This maximizes window sizes and prevents any window from obscuring another.
Installing xmonad
xmonad is available from the
Ubuntu repositories. Install xmonad from the package
xmonad (click the link to install), or by running the command below in your terminal:
sudo apt-get install xmonad
A number of dependencies will be installed with xmonad. They are needed because reconfiguring xmonad requires recompiling it. (Don’t worry, this is handled automatically.)
I’d also highly recommend installing dmenu, a simple application launcher that integrates with xmonad. Install dmenu from the package
dwm-tools (click the link to install), or by running the command below in
your terminal:
sudo apt-get install dwm-tools
From the login screen, you should now be able to select an xmonad session and log in to start xmonad.
(
Read more
)