]> code.delx.au - spectrwm/blob - spectrwm.1
Add new option: warp_pointer.
[spectrwm] / spectrwm.1
1 .\" Copyright (c) 2009-2012 Marco Peereboom <marco@peereboom.us>
2 .\" Copyright (c) 2009 Darrin Chandler <dwchandler@stilyagin.com>
3 .\" Copyright (c) 2011-2014 Reginald Kennedy <rk@rejii.com>
4 .\" Copyright (c) 2011-2012 Lawrence Teo <lteo@lteo.net>
5 .\" Copyright (c) 2011-2012 Tiago Cunha <tcunha@gmx.com>
6 .\" Copyright (c) 2012 David Hill <dhill@mindcry.org>
7 .\"
8 .\" Permission to use, copy, modify, and distribute this software for any
9 .\" purpose with or without fee is hereby granted, provided that the above
10 .\" copyright notice and this permission notice appear in all copies.
11 .\"
12 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 .\"
20 .Dd $Mdocdate: February 15 2012 $
21 .Dt SPECTRWM 1
22 .Os
23 .Sh NAME
24 .Nm spectrwm
25 .Nd window manager for X11
26 .Sh SYNOPSIS
27 .Nm spectrwm
28 .Sh DESCRIPTION
29 .Nm
30 is a minimalistic window manager that tries to stay out of the way so that
31 valuable screen real estate can be used for much more important stuff.
32 It has sane defaults and does not require one to learn a language to do any
33 configuration.
34 It was written by hackers for hackers and it strives to be small, compact and
35 fast.
36 .Pp
37 When
38 .Nm
39 starts up, it reads settings from its configuration file,
40 .Pa spectrwm.conf .
41 See the
42 .Sx CONFIGURATION FILES
43 section below.
44 .Pp
45 The following notation is used throughout this page:
46 .Pp
47 .Bl -tag -width Ds -offset indent -compact
48 .It Cm M
49 Meta
50 .It Cm S
51 Shift
52 .It Aq Cm Name
53 Named key
54 .It Cm M1
55 Mouse button 1
56 .It Cm M3
57 Mouse button 3
58 .El
59 .Pp
60 .Nm
61 is very simple in its use.
62 Most of the actions are initiated via key or mouse bindings.
63 See the
64 .Sx BINDINGS
65 section below for defaults and customizations.
66 .Sh CONFIGURATION FILES
67 .Nm
68 first tries to open the user specific file,
69 .Pa ~/.spectrwm.conf .
70 If that file is unavailable,
71 it then tries to open the global configuration file
72 .Pa /etc/spectrwm.conf .
73 .Pp
74 The format of the file is \*(Ltkeyword\*(Gt = \*(Ltsetting\*(Gt.
75 For example:
76 .Pp
77 .Dl color_focus = red
78 .Pp
79 Enabling or disabling an option is done by using 1 or 0 respectively.
80 .Pp
81 Colors need to be specified per the
82 .Xr XQueryColor 3
83 specification.
84 .Pp
85 Comments begin with a #. When a literal '#' is desired in an option, then it
86 must be escaped with a backslash. i.e. \e#
87 .Pp
88 The file supports the following keywords:
89 .Bl -tag -width 2m
90 .It Ic autorun
91 Launch an application in a specified workspace at start-of-day.
92 Defined in the format ws[<idx>]:application, e.g. ws[2]:xterm launches an
93 xterm in workspace 2.
94 .It Ic bar_action
95 External script that populates additional information in the status bar,
96 such as battery life.
97 .It Ic bar_at_bottom
98 Place the statusbar at the bottom of each region instead of the top.
99 .It Ic bar_border Ns Bq Ar x
100 Border color of the status bar(s) in screen
101 .Ar x .
102 .It Ic bar_border_unfocus Ns Bq Ar x
103 Border color of the status bar(s) on unfocused region(s) in screen
104 .Ar x .
105 .It Ic bar_border_width
106 Set status bar border thickness in pixels.
107 Disable border by setting to 0.
108 .It Ic bar_color Ns Bq Ar x
109 Background color of the status bar(s) in screen
110 .Ar x .
111 .It Ic bar_enabled
112 Set default
113 .Ar bar_toggle
114 state; default is 1.
115 .It Ic bar_enabled_ws Ns Bq Ar x
116 Set default
117 .Ar bar_toggle_ws
118 state on workspace
119 .Ar x ;
120 default is 1.
121 .It Ic bar_font
122 Font used in the status bar. Either Xft or X Logical Font Description (XLFD)
123 may be used to specify fonts. Fallback fonts may be specified by separating
124 each font with a comma. If all entries are XLFD syntax, font set will be
125 used. If at least one entry is Xft, Xft will be used. Note that if Xft is in
126 use, only the first font that successfully loads will be used regardless of
127 missing glyphs. The default is to use font set. Also note that dmenu does
128 not support Xft fonts.
129 .Pp
130 Xft examples:
131 .Bd -literal -offset indent
132 bar_font = Terminus:style=Regular:pixelsize=14:antialias=true
133
134 bar_font = -*-profont-medium-*-*-*-11-*-*-*-*-*-*-*,Terminus:pixelsize=14,\
135 -*-clean-medium-*-*-*-12-*-*-*-*-*-*-*
136 .Ed
137 .Pp
138 Font set examples:
139 .Bd -literal -offset indent
140 bar_font = -*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*
141
142 bar_font = -*-profont-medium-*-*-*-11-*-*-*-*-*-*-*,\
143 -*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*,\
144 -*-clean-medium-*-*-*-12-*-*-*-*-*-*-*
145 .Ed
146 .Pp
147 To list the available fonts in your system see
148 .Xr fc-list 1
149 or
150 .Xr xlsfonts 1
151 manpages.
152 The
153 .Xr xfontsel 1
154 application can help with the XLFD setting.
155 .It Ic bar_font_color Ns Bq Ar x
156 Color of the font in status bar in screen
157 .Ar x .
158 .It Ic bar_format
159 Set the bar_format string and overrides
160 .Ic clock_format
161 and all of the
162 .Ic enabled
163 options.
164 The format is passed through
165 .Xr strftime 3
166 before being used.
167 It may contain the following character sequences:
168 .Bl -column "Character sequence" "Replaced with" -offset indent
169 .It Sy "Character sequence" Ta Sy "Replaced with"
170 .It Li "+<" Ta "Pad with a space"
171 .It Li "+A" Ta "Output of the external script"
172 .It Li "+C" Ta "Window class (from WM_CLASS)"
173 .It Li "+D" Ta "Workspace name"
174 .It Li "+F" Ta "Floating indicator"
175 .It Li "+I" Ta "Workspace index"
176 .It Li "+M" Ta "Number of iconic (minimized) windows in workspace"
177 .It Li "+N" Ta "Screen number"
178 .It Li "+P" Ta "Window class and instance separated by a colon"
179 .It Li "+S" Ta "Stacking algorithm"
180 .It Li "+T" Ta "Window instance (from WM_CLASS)"
181 .It Li "+U" Ta "Urgency hint"
182 .It Li "+V" Ta "Program version"
183 .It Li "+W" Ta "Window name (from _NET_WM_NAME/WM_NAME)"
184 .It Li "++" Ta "A literal" Ql +
185 .El
186 .Pp
187 All character sequences may limit its output to a specific length, for
188 example +64A. Any characters that don't match the specification are copied
189 as-is.
190 .It Ic bar_justify
191 Justify the status bar text. Possible values are
192 .Pa left ,
193 .Pa center ,
194 and
195 .Pa right .
196 .Pp
197 Note that if the output is not
198 .Pa left
199 justified, it may not be properly aligned in some circumstances, due to the
200 white-spaces in the default static format.
201 See the
202 .Ic bar_format
203 option for more details.
204 .It Ic bind Ns Bq Ar x
205 Bind key combo to action
206 .Ar x .
207 See the
208 .Sx BINDINGS
209 section below.
210 .It Ic border_width
211 Set window border thickness in pixels.
212 Disable all borders by setting to 0.
213 .It Ic boundary_width
214 Set region containment boundary width in pixels. This is how far a window
215 must be dragged/resized beyond the region edge before it is allowed outside
216 the region. This has no effect when manipulating the window with key
217 bindings. Disable the window containment effect by setting to 0.
218 .It Ic clock_enabled
219 Enable or disable displaying the clock in the status bar.
220 Disable by setting to 0
221 so a custom clock could be used in the
222 .Pa bar_action
223 script.
224 .It Ic iconic_enabled
225 Display the number of iconic (minimized) windows in the status bar.
226 Enable by setting to 1.
227 .It Ic color_focus
228 Border color of the currently focused window. Default is red.
229 .It Ic color_focus_maximized
230 Border color of the currently focused, maximized window. Defaults to the
231 value of color_focus.
232 .It Ic color_unfocus
233 Border color of unfocused windows, default is rgb:88/88/88.
234 .It Ic color_unfocus_maximized
235 Border color of unfocused, maximized windows. Defaults to the value of
236 color_unfocus.
237 .It Ic dialog_ratio
238 Some applications have dialogue windows that are too small to be useful.
239 This ratio is the screen size to what they will be resized.
240 For example, 0.6 is 60% of the physical screen size.
241 .It Ic disable_border
242 Remove border when bar is disabled and there is only one window on the
243 region.
244 .It Ic focus_close
245 Window to put focus when the focused window is closed.
246 Possible values are
247 .Pa first ,
248 .Pa next ,
249 .Pa previous
250 (default) and
251 .Pa last .
252 .Pa next
253 and
254 .Pa previous
255 are relative to the window that is closed.
256 .It Ic focus_close_wrap
257 Whether to allow the focus to jump to the last window when the first window
258 is closed or vice versa. Disable by setting to 0.
259 .It Ic focus_default
260 Window to put focus when no window has been focused. Possible values are
261 .Pa first
262 and
263 .Pa last
264 (default).
265 .It Ic focus_mode
266 Window focus behavior with respect to the mouse cursor. Possible values:
267 .Pp
268 .Bl -tag -width "default" -offset indent -compact
269 .It Cm default
270 Set window focus on border crossings caused by cursor motion and
271 window interaction.
272 .It Cm follow
273 Set window focus on all cursor border crossings, including workspace switches
274 and changes to layout.
275 .It Cm manual
276 Set window focus on window interaction only.
277 .El
278 .It Ic java_workaround
279 Workaround a Java GUI rendering issue on non-reparenting window managers by
280 impersonating LG3D window manager, written by Sun. Default is 1.
281 .It Ic keyboard_mapping
282 Clear all key bindings and load new key bindings from the specified file.
283 This allows you to load pre-defined key bindings for your keyboard layout.
284 See the
285 .Sx KEYBOARD MAPPING FILES
286 section below for a list of keyboard mapping files that have been provided
287 for several keyboard layouts.
288 .It Ic layout
289 Select layout to use at start-of-day. Defined in the format
290 ws[idx]:master_grow:master_add:stack_inc:always_raise:stack_mode, e.g.
291 ws[2]:-4:0:1:0:horizontal sets worskspace 2 to the horizontal stack mode and
292 shrinks the master area by 4 ticks and adds one window to the stack, while
293 maintaining default floating window behavior.
294 Possible stack_mode values are
295 .Pa vertical ,
296 .Pa vertical_flip ,
297 .Pa horizontal ,
298 .Pa horizontal_flip
299 and
300 .Pa fullscreen .
301 .Pp
302 See
303 .Pa master_grow ,
304 .Pa master_shrink ,
305 .Pa master_add ,
306 .Pa master_del ,
307 .Pa stack_inc ,
308 .Pa stack_dec ,
309 and
310 .Pa always_raise
311 for more information.
312 Note that the stacking options are complicated and have side-effects. One
313 should familiarize oneself with these commands before experimenting with the
314 .Pa layout
315 option.
316 .Pp
317 This setting is not retained at restart.
318 .It Ic modkey
319 Change mod key.
320 Mod1 is generally the ALT key and Mod4 is the windows key on a PC.
321 .It Ic name
322 Set the name of a workspace at start-of-day.
323 Defined in the format ws[<idx>]:<name>, e.g. ws[1]:Console sets the name of
324 workspace 1 to
325 .Dq Console .
326 .It Ic program Ns Bq Ar p
327 Define new action to spawn a program
328 .Ar p .
329 See the
330 .Sx PROGRAMS
331 section below.
332 .It Ic quirk Ns Bq Ar c:i:n
333 Add "quirk" for windows with class
334 .Ar c ,
335 instance
336 .Ar i
337 and name
338 .Ar n .
339 See the
340 .Sx QUIRKS
341 section below.
342 .It Ic region
343 Allocates a custom region, removing any autodetected regions which occupy the
344 same space on the screen.
345 Defined in the format screen[<idx>]:WIDTHxHEIGHT+X+Y,
346 e.g.\& screen[1]:800x1200+0+0.
347 .Pp
348 To make a region span multiple monitors, create a region big enough to cover
349 them all, e.g. screen[1]:2048x768+0+0 makes the region span two monitors with
350 1024x768 resolution sitting one next to the other.
351 .It Ic region_padding
352 Pixel width of empty space within region borders.
353 Disable by setting to 0.
354 .It Ic spawn_position
355 Position in stack to place newly spawned windows.
356 Possible values are
357 .Pa first ,
358 .Pa next ,
359 .Pa previous
360 and
361 .Pa last
362 (default).
363 .Pa next
364 and
365 .Pa previous
366 are relative to the focused window.
367 .It Ic stack_enabled
368 Enable or disable displaying the current stacking algorithm in the status
369 bar.
370 .It Ic term_width
371 Set a preferred minimum width for the terminal.
372 If this value is greater than 0,
373 .Nm
374 will attempt to adjust the font sizes in the terminal to keep the terminal
375 width above this number as the window is resized.
376 Only
377 .Xr xterm 1
378 is currently supported.
379 The
380 .Xr xterm 1
381 binary must not be setuid or setgid, which it is by default on most systems.
382 Users may need to set program[term] (see the
383 .Sx PROGRAMS
384 section) to use an alternate copy of the
385 .Xr xterm 1
386 binary without the setgid bit set.
387 .It Ic tile_gap
388 Pixel width of empty space between tiled windows. Negative values cause overlap.
389 Set this to the opposite of border_width to collapse the border between tiles.
390 Disable by setting to 0.
391 .It Ic urgent_enabled
392 Enable or disable the urgency hint indicator in the status bar.
393 Note that many terminal emulators require an explicit setting for the bell
394 character to trigger urgency on the window. In xterm, for example, one needs to
395 add the following line to
396 .Pa .Xdefaults :
397 .Bd -literal -offset indent
398 xterm.bellIsUrgent: true
399 .Ed
400 .It Ic verbose_layout
401 Enable or disable displaying the current master window count and stack column/row
402 count in the status bar.
403 Enable by setting to 1.
404 See
405 .Pa master_add ,
406 .Pa master_del ,
407 .Pa stack_inc
408 and
409 .Pa stack_dec
410 for more information.
411 .It Ic window_class_enabled
412 Enable or disable displaying the window class name (from WM_CLASS) in the
413 status bar. Enable by setting to 1.
414 .It Ic window_instance_enabled
415 Enable or disable displaying the window instance name (from WM_CLASS) in the
416 status bar. Enable by setting to 1.
417 .It Ic window_name_enabled
418 Enable or disable displaying the window display name (from _NET_WM_NAME/WM_NAME)
419 in the status bar. Enable by setting to 1.
420 .Pp
421 To prevent excessively large window names from pushing the remaining text off
422 the bar, it's limited to 64 characters, by default.
423 See the
424 .Ic bar_format
425 option for more details.
426 .It Ic warp_pointer
427 Centers the mouse pointer on the focused window when using key bindings to
428 change focus, switch workspaces, change regions, etc. Enable by setting to 1.
429 Default is 0 (disabled.)
430 .It Ic workspace_limit
431 Set the total number of workspaces available. Minimum is 1, maximum is 22,
432 default is 10.
433 .El
434 .Sh PROGRAMS
435 .Nm
436 allows you to define custom actions to launch programs of your choice and
437 then bind them the same as with built-in actions.
438 See the
439 .Sx BINDINGS
440 section below.
441 .Pp
442 Custom programs in the configuration file are specified as follows:
443 .Pp
444 .Dl program[<action>] = <progpath> [<arg> [... <arg>]]
445 .Pp
446 .Aq action
447 is any identifier that does not conflict with a built-in action or keyword,
448 .Aq progpath
449 is the desired program, and
450 .Aq arg
451 is zero or more arguments to the program.
452 .Pp
453 Remember that when using # in your program call, it must be escaped with a
454 backslash. i.e. \e#
455 .Pp
456 The following argument variables will be substituted for values at the time the program
457 is spawned:
458 .Pp
459 .Bl -tag -width "$bar_font_color" -offset indent -compact
460 .It Cm $bar_border
461 .It Cm $bar_color
462 .It Cm $bar_font
463 .It Cm $bar_font_color
464 .It Cm $color_focus
465 .It Cm $color_unfocus
466 .It Cm $dmenu_bottom
467 -b if bar_at_bottom is enabled.
468 .It Cm $region_index
469 .It Cm $workspace_index
470 .El
471 .Pp
472 Example:
473 .Bd -literal -offset indent
474 program[ff] = /usr/local/bin/firefox http://spectrwm.org/
475 bind[ff] = Mod+Shift+b # Now M-S-b launches firefox
476 .Ed
477 .Pp
478 To cancel the previous, unbind it:
479 .Bd -literal -offset indent
480 bind[] = Mod+Shift+b
481 .Ed
482 .Pp
483 Default programs:
484 .Bl -tag -width "screenshot_wind" -offset indent -compact
485 .It Cm lock
486 xlock
487 .It Cm menu
488 dmenu_run $dmenu_bottom \-fn $bar_font \-nb $bar_color \-nf $bar_font_color \-sb
489 $bar_border \-sf $bar_color
490 .It Cm term
491 xterm
492 .It Cm initscr
493 initscreen.sh # optional
494 .It Cm screenshot_all
495 screenshot.sh full # optional
496 .It Cm screenshot_wind
497 screenshot.sh window # optional
498 .El
499 .Pp
500 Note that optional default programs will not be validated unless overridden.
501 If a default program fails validation, you can resolve the exception
502 by installing the program, modifying the program call or disabling the program
503 by freeing the respective key binding.
504 .Pp
505 For example, to override
506 .Ic lock :
507 .Bd -literal -offset indent
508 program[lock] = xscreensaver-command --lock
509 .Ed
510 .Pp
511 To unbind
512 .Ic lock
513 and prevent it from being validated:
514 .Bd -literal -offset indent
515 bind[] = MOD+Shift+Delete
516 .Ed
517 .Sh BINDINGS
518 .Nm
519 provides many functions (or actions) accessed via key or mouse bindings.
520 .Pp
521 The current mouse bindings are described below:
522 .Pp
523 .Bl -tag -width "M-j, M-<TAB>XXX" -offset indent -compact
524 .It Cm M1
525 Focus window
526 .It Cm M-M1
527 Move window
528 .It Cm M-M3
529 Resize window
530 .It Cm M-S-M3
531 Resize window while maintaining it centered
532 .El
533 .Pp
534 The default key bindings are described below:
535 .Pp
536 .Bl -tag -width "M-j, M-<TAB>XXXXXX" -offset indent -compact
537 .It Cm M-S- Ns Aq Cm Return
538 term
539 .It Cm M-p
540 menu
541 .It Cm M-S-q
542 quit
543 .It Cm M-q
544 restart
545 .It Cm M- Ns Aq Cm Space
546 cycle_layout
547 .It Cm M-S- Ns Aq Cm \e
548 flip_layout
549 .It Cm M-S- Ns Aq Cm Space
550 stack_reset
551 .It Cm M-h
552 master_shrink
553 .It Cm M-l
554 master_grow
555 .It Cm M-,
556 master_add
557 .It Cm M-.
558 master_del
559 .It Cm M-S-,
560 stack_inc
561 .It Cm M-S-.
562 stack_dec
563 .It Cm M- Ns Aq Cm Return
564 swap_main
565 .It Xo
566 .Cm M-j ,
567 .Cm M- Ns Aq Cm TAB
568 .Xc
569 focus_next
570 .It Xo
571 .Cm M-k ,
572 .Cm M-S- Ns Aq Cm TAB
573 .Xc
574 focus_prev
575 .It Cm M-m
576 focus_main
577 .It Cm M-u
578 focus_urgent
579 .It Cm M-S-j
580 swap_next
581 .It Cm M-S-k
582 swap_prev
583 .It Cm M-b
584 bar_toggle
585 .It Cm M-S-b
586 bar_toggle_ws
587 .It Cm M-x
588 wind_del
589 .It Cm M-S-x
590 wind_kill
591 .It Cm M- Ns Aq Ar 1-9,0,F1-F12
592 .Pf ws_ Aq Ar 1-22
593 .It Cm M-S- Ns Aq Ar 1-9,0,F1-F12
594 .Pf mvws_ Ns Aq Ar 1-22
595 .It Cm M- Ns Aq Ar Keypad 1-9
596 .Pf rg_ Aq Ar 1-9
597 .It Cm M-S- Ns Aq Ar Keypad 1-9
598 .Pf mvrg_ Aq Ar 1-9
599 .It Cm M- Ns Aq Cm Right
600 ws_next
601 .It Cm M- Ns Aq Cm Left
602 ws_prev
603 .It Cm M- Ns Aq Cm Up
604 ws_next_all
605 .It Cm M- Ns Aq Cm Down
606 ws_prev_all
607 .It Cm M-a
608 ws_next_move
609 .It Cm M-S- Ns Aq Cm Left
610 ws_prev_move
611 .It Cm M-S- Ns Aq Cm Up
612 ws_prior
613 .It Cm M-S- Ns Aq Cm Right
614 rg_next
615 .It Cm M-S- Ns Aq Cm Left
616 rg_prev
617 .It Cm M-s
618 screenshot_all
619 .It Cm M-S-s
620 screenshot_wind
621 .It Cm M-S-v
622 version
623 .It Cm M-t
624 float_toggle
625 .It Cm M-S- Ns Aq Cm Delete
626 lock
627 .It Cm M-S-i
628 initscr
629 .It Cm M-w
630 iconify
631 .It Cm M-S-w
632 uniconify
633 .It Cm M-e
634 maximize_toggle
635 .It Cm M-S-r
636 always_raise
637 .It Cm M-v
638 button2
639 .It Cm M--
640 width_shrink
641 .It Cm M-=
642 width_grow
643 .It Cm M-S--
644 height_shrink
645 .It Cm M-S-=
646 height_grow
647 .It Cm M-[
648 move_left
649 .It Cm M-]
650 move_right
651 .It Cm M-S-[
652 move_up
653 .It Cm M-S-]
654 move_down
655 .It Cm M-S-/
656 name_workspace
657 .It Cm M-/
658 search_workspace
659 .It Cm M-f
660 search_win
661 .El
662 .Pp
663 The action names and descriptions are listed below:
664 .Pp
665 .Bl -tag -width "M-j, M-<TAB>XXXX" -offset indent -compact
666 .It Cm term
667 Spawn a new terminal
668 (see
669 .Sx PROGRAMS
670 above).
671 .It Cm menu
672 Menu
673 (see
674 .Sx PROGRAMS
675 above).
676 .It Cm quit
677 Quit
678 .Nm .
679 .It Cm restart
680 Restart
681 .Nm .
682 .It Cm cycle_layout
683 Cycle layout.
684 .It Cm flip_layout
685 Swap the master and stacking areas.
686 .It Cm stack_reset
687 Reset layout.
688 .It Cm master_shrink
689 Shrink master area.
690 .It Cm master_grow
691 Grow master area.
692 .It Cm master_add
693 Add windows to master area.
694 .It Cm master_del
695 Remove windows from master area.
696 .It Cm stack_inc
697 Add columns/rows to stacking area.
698 .It Cm stack_dec
699 Remove columns/rows from stacking area.
700 .It Cm swap_main
701 Move current window to master area.
702 .It Cm focus_next
703 Focus next window in workspace.
704 .It Cm focus_prev
705 Focus previous window in workspace.
706 .It Cm focus_main
707 Focus on main window in workspace.
708 .It Cm focus_urgent
709 Focus on next window with the urgency hint flag set. The workspace is switched if needed.
710 .It Cm swap_next
711 Swap with next window in workspace.
712 .It Cm swap_prev
713 Swap with previous window in workspace.
714 .It Cm bar_toggle
715 Toggle overall visibility of status bars.
716 .It Cm bar_toggle_ws
717 Toggle status bar on current workspace.
718 .It Cm wind_del
719 Delete current window in workspace.
720 .It Cm wind_kill
721 Destroy current window in workspace.
722 .It Cm ws_ Ns Ar n
723 Switch to workspace
724 .Ar n ,
725 where
726 .Ar n
727 is 1 through workspace_limit.
728 .It Cm mvws_ Ns Ar n
729 Move current window to workspace
730 .Ar n ,
731 where
732 .Ar n
733 is 1 through workspace_limit.
734 .It Cm rg_ Ns Ar n
735 Focus on region
736 .Ar n ,
737 where
738 .Ar n
739 is 1 through 9.
740 .It Cm mvrg_ Ns Ar n
741 Move current window to region
742 .Ar n ,
743 where
744 .Ar n
745 is 1 through 9.
746 .It Cm ws_next
747 Switch to next workspace with a window in it.
748 .It Cm ws_prev
749 Switch to previous workspace with a window in it.
750 .It Cm ws_next_all
751 Switch to next workspace.
752 .It Cm ws_prev_all
753 Switch to previous workspace.
754 .It Cm ws_next_move
755 Switch to next workspace with the current window.
756 .It Cm ws_prev_move
757 Switch to previous workspace with the current window.
758 .It Cm ws_prior
759 Switch to last visited workspace.
760 .It Cm rg_next
761 Switch to next region.
762 .It Cm rg_prev
763 Switch to previous region.
764 .It Cm screenshot_all
765 Take screenshot of entire screen (if enabled)
766 (see
767 .Sx PROGRAMS
768 above).
769 .It Cm screenshot_wind
770 Take screenshot of selected window (if enabled)
771 (see
772 .Sx PROGRAMS
773 above).
774 .It Cm version
775 Toggle version in status bar.
776 .It Cm float_toggle
777 Toggle focused window between tiled and floating.
778 .It Cm lock
779 Lock screen
780 (see
781 .Sx PROGRAMS
782 above).
783 .It Cm initscr
784 Reinitialize physical screens
785 (see
786 .Sx PROGRAMS
787 above).
788 .It Cm iconify
789 Minimize (unmap) currently focused window.
790 .It Cm uniconify
791 Restore (map) window returned by dmenu selection.
792 .It Cm maximize_toggle
793 Toggle maximization of focused window.
794 .It Cm always_raise
795 When set tiled windows are allowed to obscure floating windows.
796 .It Cm button2
797 Fake a middle mouse button click (mouse button 2).
798 .It Cm width_shrink
799 Shrink the width of a floating window.
800 .It Cm width_grow
801 Grow the width of a floating window.
802 .It Cm height_shrink
803 Shrink the height of a floating window.
804 .It Cm height_grow
805 Grow the height of a floating window.
806 .It Cm move_left
807 Move a floating window a step to the left.
808 .It Cm move_right
809 Move a floating window a step to the right.
810 .It Cm move_up
811 Move a floating window a step upwards.
812 .It Cm move_down
813 Move a floating window a step downwards.
814 .It Cm name_workspace
815 Name the current workspace.
816 .It Cm search_workspace
817 Search for a workspace.
818 .It Cm search_win
819 Search the windows in the current workspace.
820 .El
821 .Pp
822 Custom bindings in the configuration file are specified as follows:
823 .Pp
824 .Dl bind[<action>] = <keys>
825 .Pp
826 .Aq action
827 is one of the actions listed above (or empty to unbind) and
828 .Aq keys
829 is in the form of zero or more modifier keys
830 (MOD, Mod1, Shift, etc.) and one or more normal keys
831 (b, space, etc.), separated by "+".
832 .Pp
833 Example:
834 .Bd -literal -offset indent
835 bind[reset] = Mod4+q # bind Windows-key + q to reset
836 bind[] = Mod1+q # unbind Alt + q
837 .Ed
838 .Pp
839 To use the currently defined
840 .Ic modkey ,
841 specify MOD as the modifier key.
842 .Pp
843 Multiple key combinations may be bound to the same action.
844 .Pp
845 To bind non-latin characters such as \[oa] or \[*p] you must enter the xkb
846 character name instead of the character itself. Run xev, focus the window
847 and press the specific key and in the terminal output read the symbol name.
848 In the following example for \[oa]:
849 .Bd -literal -offset indent
850 KeyPress event, serial 41, synthetic NO, window 0x2600001,
851 root 0x15a, subw 0x0, time 106213808, (11,5), root:(359,823),
852 state 0x0, keycode 24 (keysym 0xe5, aring), same_screen YES,
853 XLookupString gives 2 bytes: (c3 a5) "\[oa]"
854 XmbLookupString gives 2 bytes: (c3 a5) "\[oa]"
855 XFilterEvent returns: False
856 .Ed
857 .Pp
858 The xkb name is aring. In other words, in .spectrwm.conf add:
859 .Bd -literal -offset indent
860 bind[program] = MOD+aring
861 .Ed
862 .Sh KEYBOARD MAPPING FILES
863 Keyboard mapping files for several keyboard layouts are listed
864 below.
865 These files can be used with the
866 .Pa keyboard_mapping
867 setting to load pre-defined key bindings for the specified
868 keyboard layout.
869 .Pp
870 .Bl -tag -width "spectrwm_XX.confXXX" -offset indent -compact
871 .It Cm spectrwm_cz.conf
872 Czech Republic keyboard layout
873 .It Cm spectrwm_es.conf
874 Spanish keyboard layout
875 .It Cm spectrwm_fr.conf
876 French keyboard layout
877 .It Cm spectrwm_fr_ch.conf
878 Swiss French keyboard layout
879 .It Cm spectrwm_se.conf
880 Swedish keyboard layout
881 .It Cm spectrwm_us.conf
882 United States keyboard layout
883 .El
884 .Sh QUIRKS
885 .Nm
886 provides "quirks" which handle windows that must be treated specially
887 in a tiling window manager, such as some dialogs and fullscreen apps.
888 .Pp
889 The default quirks are described below:
890 .Pp
891 .Bl -tag -width "OpenOffice.org N.M:VCLSalFrame<TAB>XXX" -offset indent \
892 -compact
893 .It Firefox\-bin:firefox\-bin
894 TRANSSZ
895 .It Firefox:Dialog
896 FLOAT
897 .It Gimp:gimp
898 FLOAT + ANYWHERE
899 .It MPlayer:xv
900 FLOAT + FULLSCREEN + FOCUSPREV
901 .It OpenOffice.org 2.4:VCLSalFrame
902 FLOAT
903 .It OpenOffice.org 3.1:VCLSalFrame
904 FLOAT
905 .It pcb:pcb
906 FLOAT
907 .It xine:Xine Window
908 FLOAT + ANYWHERE
909 .It xine:xine Panel
910 FLOAT + ANYWHERE
911 .It xine:xine Video Fullscreen Window
912 FULLSCREEN + FLOAT
913 .It Xitk:Xitk Combo
914 FLOAT + ANYWHERE
915 .It Xitk:Xine Window
916 FLOAT + ANYWHERE
917 .It XTerm:xterm
918 XTERM_FONTADJ
919 .El
920 .Pp
921 The quirks themselves are described below:
922 .Pp
923 .Bl -tag -width "XTERM_FONTADJ<TAB>XXX" -offset indent -compact
924 .It FLOAT
925 This window should not be tiled, but allowed to float freely.
926 .It TRANSSZ
927 Adjusts size on transient windows that are too small using dialog_ratio
928 (see
929 .Sx CONFIGURATION FILES ) .
930 .It ANYWHERE
931 Allow window to position itself, uncentered.
932 .It XTERM_FONTADJ
933 Adjust xterm fonts when resizing.
934 .It FULLSCREEN
935 Remove border to allow window to use full region size.
936 .It FOCUSPREV
937 On exit force focus on previously focused application not previous
938 application in the stack.
939 .It NOFOCUSONMAP
940 Don't change focus to the window when it first appears on the screen.
941 Has no effect when
942 .Ic focus_mode
943 is set to follow.
944 .It FOCUSONMAP_SINGLE
945 When the window first appears on the screen, change focus to the window
946 if there are no other windows on the workspace with the same WM_CLASS
947 class/instance value. Has no effect when
948 .Ic focus_mode
949 is set to follow.
950 .It OBEYAPPFOCUSREQ
951 When an application requests focus on the window via a _NET_ACTIVE_WINDOW
952 client message (source indication of 1), comply with the request.
953 Note that a source indication of 0 (unspecified) or 2 (pager) are always
954 obeyed.
955 .It IGNOREPID
956 Ignore the PID when determining the initial workspace for a new window.
957 Especially useful for terminal windows that share a process.
958 .It IGNORESPAWNWS
959 Ignore the spawn workspace when determining the initial workspace for a
960 new window.
961 .El
962 .Pp
963 Custom quirks in the configuration file are specified as follows:
964 .Pp
965 .Dl quirk[<class>[:<instance>[:<name>]]] = <quirk> [ + <quirk> ... ]
966 .Pp
967 .Aq class ,
968 .Aq instance
969 (optional) and
970 .Aq name
971 (optional) are patterns used to determine which window(s) the quirk(s) apply
972 and
973 .Aq quirk
974 is one of the quirks from the list above.
975 .Pp
976 Note that patterns are interpreted as POSIX Extended Regular Expressions.
977 Any ':', '[' or ']' must be escaped with '\\'.
978 See
979 .Xr regex 7
980 for more information on POSIX Extended Regular Expressions.
981 .Pp
982 For example:
983 .Bd -literal -offset indent
984 quirk[MPlayer] = FLOAT + FULLSCREEN + FOCUSPREV # Float all windows having a \
985 class of 'MPlayer'
986 quirk[.*] = FLOAT # Float all windows by default.
987 quirk[.*:.*:.*] = FLOAT # Same as above.
988 quirk[Firefox:Navigator] = FLOAT # Float all Firefox browser windows.
989 quirk[::Console] = FLOAT # Float windows with WM_CLASS not set and a \
990 window name of 'Console'.
991 quirk[\\[0-9\\].*:.*:\\[\\[\\:alnum\\:\\]\\]*] = FLOAT # Float windows with WM_CLASS \
992 class beginning with a number, any WM_CLASS instance and a \
993 _NET_WM_NAME/WM_NAME either blank or containing alphanumeric characters without spaces.
994 quirk[pcb:pcb] = NONE # remove existing quirk
995 .Ed
996 .Pp
997 You can obtain
998 .Aq class ,
999 .Aq instance
1000 and
1001 .Aq name
1002 by running
1003 .Xr xprop 1
1004 and then clicking on the desired window.
1005 In the following example the main window of Firefox was clicked:
1006 .Bd -literal -offset indent
1007 $ xprop | grep -E "^(WM_CLASS|_NET_WM_NAME|WM_NAME)"
1008 WM_CLASS(STRING) = "Navigator", "Firefox"
1009 WM_NAME(STRING) = "spectrwm - ConformalOpenSource"
1010 _NET_WM_NAME(UTF8_STRING) = "spectrwm - ConformalOpenSource"
1011 .Ed
1012 .Pp
1013 Note that
1014 .Xr xprop 1
1015 displays WM_CLASS as:
1016 .Bd -literal -offset indent
1017 WM_CLASS(STRING) = "<instance>", "<class>"
1018 .Ed
1019 In the example above the quirk entry would be:
1020 .Bd -literal -offset indent
1021 quirk[Firefox:Navigator] = FLOAT
1022 .Ed
1023 .Pp
1024 .Nm
1025 also automatically assigns quirks to windows based on the value
1026 of the window's _NET_WM_WINDOW_TYPE property as follows:
1027 .Pp
1028 .Bl -tag -width "_NET_WM_WINDOW_TYPE_TOOLBAR<TAB>XXX" -offset indent -compact
1029 .It _NET_WM_WINDOW_TYPE_DOCK
1030 FLOAT + ANYWHERE
1031 .It _NET_WM_WINDOW_TYPE_TOOLBAR
1032 FLOAT + ANYWHERE
1033 .It _NET_WM_WINDOW_TYPE_UTILITY
1034 FLOAT + ANYWHERE
1035 .It _NET_WM_WINDOW_TYPE_SPLASH
1036 FLOAT
1037 .It _NET_WM_WINDOW_TYPE_DIALOG
1038 FLOAT
1039 .El
1040 .Pp
1041 In all other cases, no automatic quirks are assigned to the window.
1042 Quirks specified in the configuration file override the automatic quirks.
1043 .Sh EWMH
1044 .Nm
1045 partially implements the Extended Window Manager Hints (EWMH) specification.
1046 This enables controlling windows as well as
1047 .Nm
1048 itself from external scripts and programs.
1049 This is achieved by
1050 .Nm
1051 responding to certain ClientMessage events.
1052 From the terminal these events
1053 can be conveniently sent using tools such as
1054 .Xr wmctrl 1
1055 and
1056 .Xr xdotool 1 .
1057 For the
1058 actual format of these ClientMessage events, see the EWMH specification.
1059 .Pp
1060 The id of the currently focused window is stored in the _NET_ACTIVE_WINDOW
1061 property of the root window.
1062 This can be used for example to retrieve the
1063 title of the currently active window with
1064 .Xr xprop 1
1065 and
1066 .Xr grep 1 :
1067 .Bd -literal -offset indent
1068 $ WINDOWID=`xprop \-root _NET_ACTIVE_WINDOW | grep \-o "0x.*"`
1069 $ xprop \-id $WINDOWID _NET_WM_NAME | grep \-o "\\".*\\""
1070 .Ed
1071 .Pp
1072 A window can be focused by sending a _NET_ACTIVE_WINDOW client message
1073 to the root window.
1074 For example, using
1075 .Xr wmctrl 1
1076 to send the message
1077 (assuming 0x4a0000b is the id of the window to be focused):
1078 .Bd -literal -offset indent
1079 $ wmctrl \-i \-a 0x4a0000b
1080 .Ed
1081 .Pp
1082 Windows can be closed by sending a _NET_CLOSE_WINDOW client message
1083 to the root window.
1084 For example, using
1085 .Xr wmctrl 1
1086 to send the message
1087 (assuming 0x4a0000b is the id of the window to be closed):
1088 .Bd -literal -offset indent
1089 $ wmctrl \-i \-c 0x4a0000b
1090 .Ed
1091 .Pp
1092 Windows can be floated and un-floated by adding or removing the
1093 _NET_WM_STATE_ABOVE atom from the _NET_WM_STATE property of the window.
1094 This can be achieved by sending a _NET_WM_STATE client message to the
1095 root window.
1096 For example, the following toggles the floating state of
1097 a window using
1098 .Xr wmctrl 1
1099 to send the message (assuming 0x4a0000b is the id of the window floated
1100 or un-floated):
1101 .Bd -literal -offset indent
1102 $ wmctrl \-i \-r 0x4a0000b \-b toggle,_NET_WM_STATE_ABOVE
1103 .Ed
1104 .Pp
1105 Windows can also be iconified and un-iconified by substituting
1106 _NET_WM_STATE_HIDDEN for _NET_WM_STATE_ABOVE in the previous example:
1107 .Bd -literal -offset indent
1108 $ wmctrl \-i \-r 0x4a0000b \-b toggle,_NET_WM_STATE_HIDDEN
1109 .Ed
1110 .Pp
1111 Floating windows can also be resized and moved by sending a
1112 _NET_MOVERESIZE_WINDOW client message to the root window.
1113 For example,
1114 using
1115 .Xr wmctrl 1
1116 to send the message (assuming 0x4a0000b is the id of
1117 the window to be resize/moved):
1118 .Bd -literal -offset indent
1119 $ wmctrl \-i \-r 0x4a0000b \-e 0,100,50,640,480
1120 .Ed
1121 .Pp
1122 This moves the window to (100,50) and resizes it to 640x480.
1123 .Pp
1124 Any _NET_MOVERESIZE_WINDOW events received for stacked windows are ignored.
1125 .Sh SIGNALS
1126 Sending
1127 .Nm
1128 a HUP signal will restart it.
1129 .Sh FILES
1130 .Bl -tag -width "/etc/spectrwm.confXXX" -compact
1131 .It Pa ~/.spectrwm.conf
1132 .Nm
1133 user specific settings.
1134 .It Pa /etc/spectrwm.conf
1135 .Nm
1136 global settings.
1137 .El
1138 .Sh HISTORY
1139 .Nm
1140 was inspired by xmonad & dwm.
1141 .Sh AUTHORS
1142 .An -nosplit
1143 .Nm
1144 was written by:
1145 .Pp
1146 .Bl -tag -width "Ryan Thomas McBride Aq mcbride@countersiege.com " -offset \
1147 indent -compact
1148 .It Cm Marco Peereboom Aq marco@peereboom.us
1149 .It Cm Ryan Thomas McBride Aq mcbride@countersiege.com
1150 .It Cm Darrin Chandler Aq dwchandler@stilyagin.com
1151 .It Cm Pierre-Yves Ritschard Aq pyr@spootnik.org
1152 .It Cm Tuukka Kataja Aq stuge@xor.fi
1153 .It Cm Jason L. Wright Aq jason@thought.net
1154 .It Cm Reginald Kennedy Aq rk@rejii.com
1155 .It Cm Lawrence Teo Aq lteo@lteo.net
1156 .It Cm Tiago Cunha Aq tcunha@gmx.com
1157 .It Cm David Hill Aq dhill@mindcry.org
1158 .El