Home
Name Modified Size InfoDownloads / Week
_xinitrc 2021-01-11 758 Bytes
util.h 2021-01-11 305 Bytes
util.o 2021-01-11 2.3 kB
transient.c 2021-01-11 847 Bytes
util.c 2021-01-11 517 Bytes
dwm.png 2021-01-11 373 Bytes
layoutmenu-6.2.diff 2021-01-11 2.9 kB
layoutmenu.sh 2021-01-11 95 Bytes
dwm.c.rej 2021-01-11 751 Bytes
dwm.o 2021-01-11 58.1 kB
dwm.1 2021-01-11 5.1 kB
dwm.c 2021-01-11 53.1 kB
drw.o 2021-01-11 10.6 kB
dwm 2021-01-11 62.7 kB
drw.c 2021-01-11 10.5 kB
drw.h 2021-01-11 1.7 kB
config.def.h.rej 2021-01-11 1.2 kB
config.h 2021-01-11 6.3 kB
config.mk 2021-01-11 926 Bytes
config.def.h 2021-01-11 6.3 kB
README 2021-01-11 1.1 kB
LICENSE 2021-01-11 1.9 kB
Makefile 2021-01-11 1.1 kB
Totals: 23 Items   229.4 kB 0
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.
Source: README, updated 2021-01-11