Go to file
2024-05-19 02:59:57 -04:00
patches no border patch 2024-05-19 02:59:57 -04:00
.gitignore add git ignore file 2024-05-14 22:06:17 -04:00
config.def.h tile gap patch 2024-05-19 02:59:57 -04:00
config.mk swallow patch 2024-05-11 00:48:50 -04:00
dmc.c zoom swap patch 2024-05-11 08:22:34 -04:00
drw.c unicode ellipsis patch 2024-05-17 06:10:51 -04:00
drw.h alpha patch 2024-05-10 23:58:50 -04:00
dwm.1 actual fullscreen patch 2024-05-19 00:37:47 -04:00
dwm.c make wf and lt symbols a diff color scheme 2024-05-19 02:59:57 -04:00
dwm.png dwm release 6.5 2024-05-10 16:01:34 -04:00
LICENSE dwm release 6.5 2024-05-10 16:01:34 -04:00
Makefile add config.h to makefile dest clean 2024-05-14 21:59:14 -04:00
README dwm release 6.5 2024-05-10 16:01:34 -04:00
todo.md restyle bar w/ underline tags & add repo todo list 2024-05-19 00:31:08 -04:00
transient.c dwm release 6.5 2024-05-10 16:01:34 -04:00
util.c dwm release 6.5 2024-05-10 16:01:34 -04:00
util.h dwm release 6.5 2024-05-10 16:01:34 -04:00

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.