applied Sanders doc changes, added a PHONY line and changed the output of config.h creation somewhat dc5c070c
arg@10ksloc.org · 2006-08-03 10:58 3 file(s) · +22 −17
Makefile +4 −1
24 24
${OBJ}: dwm.h config.h
25 25
26 26
config.h:
27 -
	cp config.default.h config.h
27 +
	@echo missing config.h created
28 +
	@cp config.default.h $@
28 29
29 30
dwm: ${OBJ}
30 31
	@echo LD $@
61 62
	for i in ${MAN1}; do \
62 63
		rm -f ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \
63 64
	done
65 +
66 +
.PHONY: all options clean dist install uninstall
README +2 −1
44 44
45 45
Configuration
46 46
-------------
47 -
The configuration of dwm is done by editing config.h.
47 +
The configuration of dwm is done by creating a custom config.h
48 +
and (re)compiling the source code.
dwm.1 +16 −15
7 7
.SH DESCRIPTION
8 8
.B dwm
9 9
is a dynamic window manager for X11. It manages windows in tiling and floating
10 -
modes. Either mode can be applied dynamically, depending on the application in
11 -
use and the task performed.
10 +
modes. Either mode can be applied dynamically, optimizing the environment for
11 +
the application in use and the task performed.
12 12
.P
13 13
In tiling mode windows are managed in a master and stacking column. The master
14 -
column contains the window which needs most attention at a time, whereas the
15 -
stacking column contains all other windows in a stack.  Dialog windows are
16 -
managed floating, however. In floating mode windows can be resized and moved
17 -
freely.
14 +
column contains the window which currently needs most attention, whereas the
15 +
stacking column contains all other windows. In floating mode windows can be
16 +
resized and moved freely. Dialog windows are always managed floating,
17 +
regardless of the mode selected.
18 18
.P
19 -
Windows are grouped by tags. All windows with a specific tag can be viewed at a
20 -
time. But each window may contain more than one tag, which makes it visible in
21 -
several views.
19 +
Windows are grouped by tags. Each window can be tagged with one or multiple
20 +
tags. Selecting a certain tag for viewing will display all windows with that
21 +
tag.
22 22
.P
23 23
.B dwm
24 -
has a small status bar which reads the text displayed from standard
25 -
input, if written. It draws 1-pixel borders around windows to indicate the
26 -
focus state. Unfocused windows contain a small bar in front of the window
27 -
displaying the tags and the window title.
24 +
has a small status bar which displays the text read from standard
25 +
input, if written. Besides that, it displays all available tags, and the title
26 +
of the focused window. It draws a 1-pixel border around windows to
27 +
indicate the focus state. Unfocused windows contain a small bar in front of
28 +
them displaying their tags and title.
28 29
.SH OPTIONS
29 30
.TP
30 31
.B \-v
105 106
while dragging
106 107
.SH CUSTOMIZATION
107 108
.B dwm
108 -
is customized by editing the file config.h of the source code.
109 -
This keeps it fast, secure and simple.
109 +
is customized by creating a custom config.h and (re)compiling the source
110 +
code. This keeps it fast, secure and simple.