Source cleanups, no functional change
[dvtm.git] / dvtm.1
blob8ffc9cd5b25543f6dc67c749e9d79cc0c3534c7b
1 .TH DVTM 1 dvtm\-VERSION
2 .nh
3 .SH NAME
4 dvtm \- dynamic virtual terminal manager
5 .SH SYNOPSIS
6 .B dvtm
7 .RB [ \-v ]
8 .RB [ \-M ]
9 .RB [ \-m
10 .IR modifier ]
11 .RB [ \-d
12 .IR delay ]
13 .RB [ \-h
14 .IR lines ]
15 .RB [ \-t
16 .IR title ]
17 .RB [ \-s
18 .IR status-fifo ]
19 .RB [ \-c
20 .IR cmd-fifo ]
21 .RI [ command \ ... "" ]
22 .SH DESCRIPTION
23 dvtm is a dynamic tiling window manager for the console.
24 As a console window manager it tries to make it easy to work with multiple
25 console based applications.
26 .SH OPTIONS
27 .TP
28 .B \-v
29 Print version information to standard output and exit.
30 .TP
31 .B \-M
32 Toggle default mouse grabbing upon startup. Use this to allow normal mouse operation
33 under X.
34 .TP
35 .BI \-m \ modifier
36 Set command modifier at runtime.
37 .TP
38 .BI \-d \ delay
39 Set the delay ncurses waits before deciding if a character that might be
40 part of an escape sequence is actually part of an escape sequence.
41 .TP
42 .BI \-h \ lines
43 Set the scrollback history buffer size at runtime.
44 .TP
45 .BI \-t \ title
46 Set a static terminal
47 .I title
48 and don't change it to the one of the currently focused window.
49 .TP
50 .BI \-s \ status-fifo
51 Open or create the named pipe
52 .I status-fifo
53 read its content and display it in the statusbar. See the
54 .I dvtm-status
55 script for an usage example.
56 .TP
57 .BI \-c \ cmd-fifo
58 Open or create the named pipe
59 .I cmd-fifo
60 and look for commands to execute which were defined in
61 .IR config.h .
62 .TP
63 .IR command \ ...
64 Execute
65 .IR command (s),
66 each in a separate window.
67 .SH USAGE
68 .SS Keyboard commands
69 .TP
70 .B Mod
71 Each keybinding begins with Mod which defaults to
72 .BR ^g ,
73 but can be changed in
74 .I config.h
75 or with the
76 .B \-m
77 command line option.
78 .TP
79 .B Mod\-c
80 Create a new shell window.
81 .TP
82 .B Mod\-x
83 Close focused window.
84 .TP
85 .B Mod\-l
86 Increases the master area width about 5% (all except grid and
87 fullscreen layout).
88 .TP
89 .B Mod\-h
90 Decreases the master area width about 5% (all except grid and
91 fullscreen layout).
92 .TP
93 .B Mod\-j
94 Focus next window.
95 .TP
96 .B Mod\-k
97 Focus previous window.
98 .TP
99 .BI Mod\- n
100 Focus the
101 .IR n \-th
102 window.
104 .B Mod\-.
105 Toggle minimization of current window.
107 .B Mod\-u
108 Focus next non minimized window.
110 .B Mod\-i
111 Focus prev non minimized window.
113 .B Mod\-m
114 Maximize current window (change to fullscreen layout).
116 .B Mod\-PageUp
117 Scroll up.
119 .B Mod\-PageDown
120 Scroll down.
122 .B Mod\-Space
123 Toggle between defined layouts (affects all windows).
125 .B Mod\-Enter
126 Zooms/cycles current window to/from master area.
128 .B Mod\-t
129 Change to vertical stack tiling layout.
131 .B Mod\-b
132 Change to bottom stack tiling layout.
134 .B Mod\-g
135 Change to grid layout.
137 .B Mod\-s
138 Show/hide the status bar.
140 .B Mod\-r
141 Redraw whole screen.
143 .B Mod\-a
144 Toggle keyboard multiplexing mode, if activated keypresses are sent to all
145 visible windows.
147 .B Mod\-X
148 Lock screen.
150 .B Mod\-B
151 Toggle bell (off by default).
153 .B Mod\-M
154 Toggle dvtm mouse grabbing.
156 .B Mod\-v
157 Enter copy mode (see section below for navigation commands).
159 .B Mod\-/
160 Enter copy mode and start searching forward.
162 .B Mod\-?
163 Enter copy mode and start searching backwards.
165 .B Mod\-p
166 Paste last copied text from copy mode at current cursor position.
168 .B Mod\-F1
169 Show this manual page.
171 .B Mod\-Mod
172 Send the Mod key.
174 .B Mod\-q
175 Quit dvtm.
176 .SS Mouse commands
178 .B Copy and Paste
179 By default dvtm captures mouse events to provide the actions listed below.
180 Unfortunately this interferes with the standard X copy and paste mechanism.
181 To work around this you need to hold down
182 .B Shift
183 while selecting or pasting text.
184 Alternatively you can disable mouse support at compile time, start dvtm with the
185 .B -M
186 flag or toggle mouse support during runtime with
187 .BR Mod\-M .
189 .B Button1 click
190 Select window.
192 .B Button1 double click
193 Select window and toggle maximization.
195 .B Button2 click
196 Zoom/cycle current window to/from master area.
198 .B Button3 click
199 Toggle minimization of current window.
200 .SS Copy mode
201 Copy mode gives easy access to past output.
202 The commands use vi style keybindings and support number prefixes as
203 command multipliers.
205 .B Entering
206 Copy mode can be entered with
207 .BR Mod\-v .
209 .B Navigation
210 Once in, navigation works with vi style keybindings
211 .RB ( h , j , k , l , ^ , $ , g , H , M , L , G )
212 as well as with the
213 .BR Arrows / Home / End / Page-Down / Page-Up
214 keys.
216 .B Searching
217 Search forward with
218 .B /
219 and backwards with
220 .BR ? .
221 Jump forward to next match with
222 .BR n .
223 Jump backwards to next match with
224 .BR N .
226 .B Selecting
227 To start making a selection press
228 .B v
229 (similar to visual mode in vi).
231 .B Copying
232 To copy the current selection use
233 .BR y .
234 If you haven't made a selection the current line is copied.
235 Add a number prefix to copy n lines starting from the current line.
236 This command leaves the copy mode.
238 .B Pasting
239 The previously copied text can be pasted at the current cursor position
240 with
241 .BR Mod\-p .
243 .B Leaving
244 Copy mode is automatically left upon copying something. To manually
245 exit at any time press
246 .B ESC
248 .BR q .
249 .SH ENVIRONMENT VARIABLES
250 By default dvtm uses its own terminfo file and therefore sets
251 .BR TERM=dvtm
252 within the client windows. This can be overridden by setting the
253 .BR DVTM_TERM
254 environment variable to a valid terminal name before launching dvtm.
255 .SH EXAMPLE
256 See the
257 .I dvtm-status
258 script as an example of how to display text in the
259 status bar.
260 .SH CUSTOMIZATION
261 dvtm is customized by creating a custom
262 .I config.h
263 and (re)compiling the source code.
264 This keeps it fast, secure and simple.
265 .SH AUTHOR
266 dvtm is written by Marc AndrĂ© Tanner <mat at brain-dump.org>