Go to file
2025-05-26 16:10:10 +09:30
config.def.h minor change trial 2025-05-26 16:10:10 +09:30
config.mk bump version to 6.5 2024-03-19 12:13:16 +01:00
drw.c patched attachtop 2025-04-19 15:57:50 +09:30
drw.h sync latest drw.{c,h} changes from dmenu 2022-05-10 19:07:56 +02:00
dwm-attachtop-6.2.diff added patch file 2025-04-19 15:06:48 +09:30
dwm-fullscreen-6.2.diff added patch file 2025-04-19 15:58:55 +09:30
dwm-keychord-6.4.diff forgot to add patch file 2025-04-18 21:43:20 +09:30
dwm-movestack-20211115-a786211.diff added patch file 2025-04-19 15:03:54 +09:30
dwm-pertag-20200914-61bb8b2.diff added patch file 2025-04-19 14:53:31 +09:30
dwm-restartsig-20180523-6.2.diff added patch file 2025-04-19 14:54:54 +09:30
dwm-shif-tools-6.2.diff patch file 2025-04-18 21:54:52 +09:30
dwm-statuscmd-20241009-8933ebc.diff patched statuscmd 2025-04-18 21:48:01 +09:30
dwm-uselessgap-20211119-58414bee958f2.diff added patch file 2025-04-19 15:01:15 +09:30
dwm.1 patched restartsig 2025-04-19 14:57:03 +09:30
dwm.c merged keychord 2025-04-19 20:56:25 +09:30
dwm.png alternate dwm.png 2006-07-19 14:49:19 +02:00
LICENSE LICENSE: add Chris Down 2022-04-26 15:50:32 +02:00
Makefile merged and updated config 2025-04-23 13:31:18 +09:30
movestack.c merged and updated config 2025-04-23 13:31:18 +09:30
README update README: remove mentioning the old dextra repo 2018-03-14 21:03:11 +01:00
shift-tools.c shift-tools patched? 2025-04-18 21:57:06 +09:30
transient.c applied Peter Hartlichs nice interim Xinerama and map fix patches, for debugging purposes I also added his transient test driver 2011-07-29 20:01:22 +02:00
util.c util.c: output function might override errno and thus affect perror() 2024-10-27 20:10:07 +01:00
util.h patched attachtop 2025-04-19 15:57:50 +09:30

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.