Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

ranguli/dwm

Repository files navigation

dwm

My fork of dwm with patches for configuration changes. I keep the source code itself 'vanilla' within git, and maintain a set of patches that can be applied. This way it's easier to apply/remove them.

Patches

Creating

To create a patch:

git diff -up > patch

Applying

In order to apply a patch:

git apply patch

Building

cd ./dwm && make && sudo make install

Methodology

The changes in both dwm.c and config.h made by patches should not be tracked into version control. This gives us the flexibility to apply/remove patches freely.