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.
|
|
7 years ago | |
|---|---|---|
| patches | 7 years ago | |
| LICENSE | 7 years ago | |
| Makefile | 7 years ago | |
| README.md | 7 years ago | |
| config.def.h | 7 years ago | |
| config.h | 7 years ago | |
| config.mk | 7 years ago | |
| drw.c | 7 years ago | |
| drw.h | 7 years ago | |
| drw.o | 7 years ago | |
| dwm | 7 years ago | |
| dwm.1 | 7 years ago | |
| dwm.c | 7 years ago | |
| dwm.o | 7 years ago | |
| dwm.png | 7 years ago | |
| movestack.c | 7 years ago | |
| transient.c | 7 years ago | |
| util.c | 7 years ago | |
| util.h | 7 years ago | |
| util.o | 7 years ago | |
README.md
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:
- Rotate stack
- Pertag
- 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