dwm-meillo
changeset 174:48c820470858
applied Sanders doc changes, added a PHONY line and changed the output of config.h creation somewhat
author | arg@10ksloc.org |
---|---|
date | Thu, 03 Aug 2006 10:58:29 +0200 |
parents | 1db04019684e |
children | f0b81c08a588 |
files | Makefile README dwm.1 |
diffstat | 3 files changed, 22 insertions(+), 17 deletions(-) [+] |
line diff
1.1 --- a/Makefile Thu Aug 03 10:55:07 2006 +0200 1.2 +++ b/Makefile Thu Aug 03 10:58:29 2006 +0200 1.3 @@ -24,7 +24,8 @@ 1.4 ${OBJ}: dwm.h config.h 1.5 1.6 config.h: 1.7 - cp config.default.h config.h 1.8 + @echo missing config.h created 1.9 + @cp config.default.h $@ 1.10 1.11 dwm: ${OBJ} 1.12 @echo LD $@ 1.13 @@ -61,3 +62,5 @@ 1.14 for i in ${MAN1}; do \ 1.15 rm -f ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \ 1.16 done 1.17 + 1.18 +.PHONY: all options clean dist install uninstall
2.1 --- a/README Thu Aug 03 10:55:07 2006 +0200 2.2 +++ b/README Thu Aug 03 10:58:29 2006 +0200 2.3 @@ -44,4 +44,5 @@ 2.4 2.5 Configuration 2.6 ------------- 2.7 -The configuration of dwm is done by editing config.h. 2.8 +The configuration of dwm is done by creating a custom config.h 2.9 +and (re)compiling the source code.
3.1 --- a/dwm.1 Thu Aug 03 10:55:07 2006 +0200 3.2 +++ b/dwm.1 Thu Aug 03 10:58:29 2006 +0200 3.3 @@ -7,24 +7,25 @@ 3.4 .SH DESCRIPTION 3.5 .B dwm 3.6 is a dynamic window manager for X11. It manages windows in tiling and floating 3.7 -modes. Either mode can be applied dynamically, depending on the application in 3.8 -use and the task performed. 3.9 +modes. Either mode can be applied dynamically, optimizing the environment for 3.10 +the application in use and the task performed. 3.11 .P 3.12 In tiling mode windows are managed in a master and stacking column. The master 3.13 -column contains the window which needs most attention at a time, whereas the 3.14 -stacking column contains all other windows in a stack. Dialog windows are 3.15 -managed floating, however. In floating mode windows can be resized and moved 3.16 -freely. 3.17 +column contains the window which currently needs most attention, whereas the 3.18 +stacking column contains all other windows. In floating mode windows can be 3.19 +resized and moved freely. Dialog windows are always managed floating, 3.20 +regardless of the mode selected. 3.21 .P 3.22 -Windows are grouped by tags. All windows with a specific tag can be viewed at a 3.23 -time. But each window may contain more than one tag, which makes it visible in 3.24 -several views. 3.25 +Windows are grouped by tags. Each window can be tagged with one or multiple 3.26 +tags. Selecting a certain tag for viewing will display all windows with that 3.27 +tag. 3.28 .P 3.29 .B dwm 3.30 -has a small status bar which reads the text displayed from standard 3.31 -input, if written. It draws 1-pixel borders around windows to indicate the 3.32 -focus state. Unfocused windows contain a small bar in front of the window 3.33 -displaying the tags and the window title. 3.34 +has a small status bar which displays the text read from standard 3.35 +input, if written. Besides that, it displays all available tags, and the title 3.36 +of the focused window. It draws a 1-pixel border around windows to 3.37 +indicate the focus state. Unfocused windows contain a small bar in front of 3.38 +them displaying their tags and title. 3.39 .SH OPTIONS 3.40 .TP 3.41 .B \-v 3.42 @@ -105,5 +106,5 @@ 3.43 while dragging 3.44 .SH CUSTOMIZATION 3.45 .B dwm 3.46 -is customized by editing the file config.h of the source code. 3.47 -This keeps it fast, secure and simple. 3.48 +is customized by creating a custom config.h and (re)compiling the source 3.49 +code. This keeps it fast, secure and simple.