No description
  • C 92.7%
  • Roff 5.3%
  • Makefile 2%
Find a file
2026-03-06 14:54:12 -06:00
.gitignore Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
config.def.h Updated config for columnar usage 2025-02-15 02:33:34 -06:00
config.h Refactored dwm to **not** pass colors (use default dmenu 2026-03-06 14:54:12 -06:00
config.mk Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
drw.c Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
drw.h Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
dwm.1 Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
dwm.c Added patch to attach at bottom instead of next. I find this is what I was doing anyways with attach below so might as well simplify. Also, I realized it is harder to implement attach aside in dvtm and I want consistency so... yeah. 2025-02-23 16:42:05 -06:00
LICENSE Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
Makefile Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
movestack.c Patched in switching window positions and updated shortcut for switching between monitors. 2025-02-15 22:59:48 -06:00
README Updated readme 2025-02-15 01:13:53 -06:00
transient.c Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
util.c Init commit for my config of dwm 2025-02-15 01:06:11 -06:00
util.h Init commit for my config of dwm 2025-02-15 01:06:11 -06:00

This is my current configuration of DWM. Please note, if you are 
recreating this then you will likely of benefit by adding the 
following to your .xinitrc file so you are able to reload on the 
fly without killing your xsession and losing all windows.

```
while type dwm >/dev/null ; do dwm && continue || break ; done
```


dwm - dynamic window manager
============================
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


Running dwm
-----------
Add the following line to your .xinitrc to start dwm using startx:

    exec dwm

In order to connect dwm to a specific display, make sure that
the DISPLAY environment variable is set correctly, e.g.:

    DISPLAY=foo.bar:1 exec dwm

(This will start dwm on display :1 of the host foo.bar.)

In order to display status info in the bar, you can do something
like this in your .xinitrc:

    while xsetroot -name "`date` `uptime | sed 's/.*,//'`"
    do
    	sleep 1
    done &
    exec dwm


Configuration
-------------
The configuration of dwm is done by creating a custom config.h
and (re)compiling the source code.