dwm-meillo
changeset 82:3954fc13b2e8
simplified man page
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Sun, 16 Jul 2006 23:26:50 +0200 |
parents | 92f0d50475be |
children | ca809fdd30ea |
files | config.mk dwm.1 |
diffstat | 2 files changed, 29 insertions(+), 36 deletions(-) [+] |
line diff
1.1 --- a/config.mk Sun Jul 16 12:29:50 2006 +0200 1.2 +++ b/config.mk Sun Jul 16 23:26:50 2006 +0200 1.3 @@ -8,7 +8,7 @@ 1.4 X11INC = /usr/X11R6/include 1.5 X11LIB = /usr/X11R6/lib 1.6 1.7 -VERSION = 0.1 1.8 +VERSION = 0.2 1.9 1.10 # includes and libs 1.11 LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11
2.1 --- a/dwm.1 Sun Jul 16 12:29:50 2006 +0200 2.2 +++ b/dwm.1 Sun Jul 16 23:26:50 2006 +0200 2.3 @@ -1,4 +1,4 @@ 2.4 -.TH DWM 1 dwm-0.1 2.5 +.TH DWM 1 dwm-0.2 2.6 .SH NAME 2.7 dwm \- dynamic window manager 2.8 .SH SYNOPSIS 2.9 @@ -6,46 +6,29 @@ 2.10 .RB [ \-v ] 2.11 .SH DESCRIPTION 2.12 .B dwm 2.13 -is a dynamic window manager for X11. It consists of a small status bar and 2.14 -arranges windows in either a tiled or floating mode. 2.15 +is a dynamic window manager for X11. It manages windows in tiling and floating 2.16 +modes. Either mode can be applied dynamically, depending on the application in 2.17 +use and the task performed. 2.18 .P 2.19 -In tiled mode 2.20 -.B dwm 2.21 -manages all windows in a left master column and a right stacking column. The 2.22 -master column contains a single window, the left stacking column all other 2.23 -windows. Dialog windows are treated floating. 2.24 +In tiling mode windows are managed in a master and stacking column. The master 2.25 +column contains the window which needs most attention at a time, whereas the 2.26 +stacking column contains all other windows in a stack. Dialog windows are 2.27 +managed floating, however. In floating mode windows can be resized and moved 2.28 +freely. 2.29 .P 2.30 -In floating mode 2.31 -.B dwm 2.32 -manages all windows in a conventional way. They can be resized and moved freely 2.33 -with the mouse. 2.34 +Windows are grouped by tags. All windows with a specific tag can be viewed at a 2.35 +time. But each window may contain more than one tag, which makes it visible in 2.36 +several views. 2.37 .P 2.38 -Windows are grouped by tags. You can view all windows with a specific tag per 2.39 -time. However, each window is allowed to contain more than one tag, which 2.40 -allows to make windows visible in all views. 2.41 -.P 2.42 -.B dwm 2.43 -reads from standard input to display status text, if written. 2.44 -.P 2.45 -.B dwm 2.46 -draws 1-pixel borders around windows to indicate the focus state and providing as 2.47 -much screen real estate as possible. Unfocused windows contain a small bar 2.48 -in front of the window indicating the tags and the window title. 2.49 +It consists of a small status bar which reads the text displayed from standard 2.50 +input, if written. It draws 1-pixel borders around windows to indicate the 2.51 +focus state. Unfocused windows contain a small bar in front of the window 2.52 +displaying the tags and the window title. 2.53 .SH OPTIONS 2.54 .TP 2.55 .B \-v 2.56 prints version information to standard output, then exits. 2.57 -.SH CUSTOMIZATION 2.58 -.B dwm 2.59 -is customized through editing its source code. It is assumed that 2.60 -.B dwm 2.61 -users know to patch it for their needs. This keeps it fast, secure and simple, 2.62 -because it does not process any input data, except window properties and 2.63 -the status text read from standard input. 2.64 -.SS Keyboard Control 2.65 -.TP 16 2.66 -.I Key 2.67 -.I Action 2.68 +.SH USAGE 2.69 .TP 2.70 .B Mod1-Return 2.71 Zoom 2.72 @@ -108,7 +91,11 @@ 2.73 .B nth 2.74 tag to cureent 2.75 .B window 2.76 -.SS Mouse Control 2.77 +.TP 2.78 +.B Control-Button1 2.79 +Zooms the clicked 2.80 +.B window 2.81 +to master column 2.82 .TP 2.83 .B Mod1-Button1 2.84 Moves current 2.85 @@ -123,3 +110,9 @@ 2.86 Resizes current 2.87 .B window 2.88 while dragging 2.89 +.SH CUSTOMIZATION 2.90 +.B dwm 2.91 +is customized through editing its source code. This keeps it fast, secure and 2.92 +simple. The source code contains the 2.93 +.I CUSTOMIZE 2.94 +keyword to highlight relevant portions for customization.