summaryrefslogtreecommitdiffstats
path: root/man/xmonad.1
blob: 2c52f737d1d5ccea3f9453453ee6e89ca02d7fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
.TH xmonad 1 "31 December 2012" xmonad-0.11 "xmonad manual".TH  "" "" 
.SH Name
.PP
xmonad - a tiling window manager
.SH Description
.PP
\f[I]xmonad\f[] is a minimalist tiling window manager for X, written in
Haskell.
Windows are managed using automatic layout algorithms, which can be
dynamically reconfigured.
At any time windows are arranged so as to maximize the use of screen
real estate.
All features of the window manager are accessible purely from the
keyboard: a mouse is entirely optional.
\f[I]xmonad\f[] is configured in Haskell, and custom layout algorithms
may be implemented by the user in config files.
A principle of \f[I]xmonad\f[] is predictability: the user should know
in advance precisely the window arrangement that will result from any
action.
.PP
By default, \f[I]xmonad\f[] provides three layout algorithms: tall, wide
and fullscreen.
In tall or wide mode, windows are tiled and arranged to prevent overlap
and maximize screen use.
Sets of windows are grouped together on virtual screens, and each screen
retains its own layout, which may be reconfigured dynamically.
Multiple physical monitors are supported via Xinerama, allowing
simultaneous display of a number of screens.
.PP
By utilizing the expressivity of a modern functional language with a
rich static type system, \f[I]xmonad\f[] provides a complete, featureful
window manager in less than 1200 lines of code, with an emphasis on
correctness and robustness.
Internal properties of the window manager are checked using a
combination of static guarantees provided by the type system, and
type-based automated testing.
A benefit of this is that the code is simple to understand, and easy to
modify.
.SH Usage
.PP
\f[I]xmonad\f[] places each window into a "workspace".
Each workspace can have any number of windows, which you can cycle
though with mod-j and mod-k.
Windows are either displayed full screen, tiled horizontally, or tiled
vertically.
You can toggle the layout mode with mod-space, which will cycle through
the available modes.
.PP
You can switch to workspace N with mod-N.
For example, to switch to workspace 5, you would press mod-5.
Similarly, you can move the current window to another workspace with
mod-shift-N.
.PP
When running with multiple monitors (Xinerama), each screen has exactly
1 workspace visible.
mod-{w,e,r} switch the focus between screens, while shift-mod-{w,e,r}
move the current window to that screen.
When \f[I]xmonad\f[] starts, workspace 1 is on screen 1, workspace 2 is
on screen 2, etc.
When switching workspaces to one that is already visible, the current
and visible workspaces are swapped.
.SS Flags
.PP
xmonad has several flags which you may pass to the executable.
These flags are:
.TP
.B --recompile
Recompiles your configuration in \f[I]~/.xmonad/xmonad.hs\f[]
.RS
.RE
.TP
.B --restart
Causes the currently running \f[I]xmonad\f[] process to restart
.RS
.RE
.TP
.B --replace
Replace the current window manager with xmonad
.RS
.RE
.TP
.B --version
Display version of \f[I]xmonad\f[]
.RS
.RE
.TP
.B --verbose-version
Display detailed version of \f[I]xmonad\f[]
.RS
.RE
.SS Default keyboard bindings
.TP
.B mod-shift-return
Launch terminal
.RS
.RE
.TP
.B mod-p
Launch dmenu
.RS
.RE
.TP
.B mod-shift-p
Launch gmrun
.RS
.RE
.TP
.B mod-shift-c
Close the focused window
.RS
.RE
.TP
.B mod-space
Rotate through the available layout algorithms
.RS
.RE
.TP
.B mod-shift-space
Reset the layouts on the current workspace to default
.RS
.RE
.TP
.B mod-n
Resize viewed windows to the correct size
.RS
.RE
.TP
.B mod-tab
Move focus to the next window
.RS
.RE
.TP
.B mod-shift-tab
Move focus to the previous window
.RS
.RE
.TP
.B mod-j
Move focus to the next window
.RS
.RE
.TP
.B mod-k
Move focus to the previous window
.RS
.RE
.TP
.B mod-m
Move focus to the master window
.RS
.RE
.TP
.B mod-return
Swap the focused window and the master window
.RS
.RE
.TP
.B mod-shift-j
Swap the focused window with the next window
.RS
.RE
.TP
.B mod-shift-k
Swap the focused window with the previous window
.RS
.RE
.TP
.B mod-h
Shrink the master area
.RS
.RE
.TP
.B mod-l
Expand the master area
.RS
.RE
.TP
.B mod-t
Push window back into tiling
.RS
.RE
.TP
.B mod-comma
Increment the number of windows in the master area
.RS
.RE
.TP
.B mod-period
Deincrement the number of windows in the master area
.RS
.RE
.TP
.B mod-shift-q
Quit xmonad
.RS
.RE
.TP
.B mod-q
Restart xmonad
.RS
.RE
.TP
.B mod-shift-slash
Run xmessage with a summary of the default keybindings (useful for
beginners)
.RS
.RE
.TP
.B mod-[1..9]
Switch to workspace N
.RS
.RE
.TP
.B mod-shift-[1..9]
Move client to workspace N
.RS
.RE
.TP
.B mod-{w,e,r}
Switch to physical/Xinerama screens 1, 2, or 3
.RS
.RE
.TP
.B mod-shift-{w,e,r}
Move client to screen 1, 2, or 3
.RS
.RE
.TP
.B mod-button1
Set the window to floating mode and move by dragging
.RS
.RE
.TP
.B mod-button2
Raise the window to the top of the stack
.RS
.RE
.TP
.B mod-button3
Set the window to floating mode and resize by dragging
.RS
.RE
.SH Examples
.PP
To use xmonad as your window manager add to your \f[I]~/.xinitrc\f[]
file:
.IP
.nf
\f[C]
exec\ xmonad
\f[]
.fi
.SH Customization
.PP
xmonad is customized in ~/.xmonad/xmonad.hs, and then restarting with
mod-q.
.PP
You can find many extensions to the core feature set in the xmonad-
contrib package, available through your package manager or from
xmonad.org (http://xmonad.org).
.SS Modular Configuration
.PP
As of \f[I]xmonad-0.9\f[], any additional Haskell modules may be placed
in \f[I]~/.xmonad/lib/\f[] are available in GHC\[aq]s searchpath.
Hierarchical modules are supported: for example, the file
\f[I]~/.xmonad/lib/XMonad/Stack/MyAdditions.hs\f[] could contain:
.IP
.nf
\f[C]
module\ XMonad.Stack.MyAdditions\ (function1)\ where
\ \ \ \ function1\ =\ error\ "function1:\ Not\ implemented\ yet!"
\f[]
.fi
.PP
Your xmonad.hs may then import XMonad.Stack.MyAdditions as if that
module was contained within xmonad or xmonad-contrib.
.SH Bugs
.PP
Probably.
If you find any, please report them to the
bugtracker (http://code.google.com/p/xmonad/issues/list)