1
0
Fork
You've already forked dwm
0
my dwm fork
  • C 93.1%
  • Roff 5%
  • Makefile 1.9%
Find a file
2026年06月17日 18:38:25 +05:30
bottomstack.c patch bottomstack 2026年06月05日 21:43:14 +05:30
config.def.h dustybar 2026年06月17日 18:38:25 +05:30
config.mk bump version to 6.8 2026年01月30日 11:18:38 +01:00
drw.c drw.c: drw_scm_free: call free inside 2025年09月29日 18:48:27 +02:00
drw.h cleanup schemes and colors 2025年09月27日 12:10:17 +02:00
dwm.1 dwm.1: fix wrong text in man page 2020年07月08日 18:05:50 +02:00
dwm.c patch bottomstack 2026年06月05日 21:43:14 +05:30
dwm.png alternate dwm.png 2006年07月19日 14:49:19 +02:00
LICENSE bump version to 6.7 2026年01月10日 11:31:44 +01:00
Makefile Makefile: remove the options target 2023年09月22日 15:13:29 +02:00
README update README: remove mentioning the old dextra repo 2018年03月14日 21:03:11 +01:00
tatami.c patch bottomstack 2026年06月05日 21:43:14 +05:30
tcl.c patch bottomstack 2026年06月05日 21:43:14 +05: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 sync drw.{c,h} from dmenu 2024年10月05日 13:06:08 +02: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.