You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.2 KiB
Markdown

# My fork of DWM
============================
dwm is an extremely fast, small, and dynamic window manager for X.
## Requirements
------------
In order to build dwm you need the Xlib header files.
## Installation
------------
Edit config.mk to match your local setup (dwm is installed into
the /usr/local namespace by default).
Afterwards enter the following command to build and install dwm (if
necessary as root):
make clean install
or
sudo make clean install
Running dwm
-----------
Add the following line to your .xinitrc to start dwm using startx:
exec dwm
or
while :; do
dwm || break
done
Using the second method on this build means that you can reload DWM if you have recompiled it. To kill dwm in my fork press $MOD+x - by default in dwm the Mod key is Alt, however I have changed it to the Super Key.
## My configuration
-------------
My configuration has three patches applied these are:
1. Rotate stack
2. Pertag
3. Centered
The diff files for the patches that I applied are in this repo under the patches directory.
More information on patching can be found on the suckless website found [here](http://dwm.suckless.org/patches/)