]> code.delx.au - spectrwm/blob - spectrwm.1
Add new focus_urgent binding.
[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-2013 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 .Pp
156 .It Ic bar_font_color Ns Bq Ar x
157 Color of the font in status bar in screen
158 .Ar x .
159 .It Ic bar_format
160 Set the bar_format string and overrides
161 .Ic clock_format
162 and all of the
163 .Ic enabled
164 options.
165 The format is passed through
166 .Xr strftime 3
167 before being used.
168 It may contain the following character sequences:
169 .Bl -column "Character sequence" "Replaced with" -offset indent
170 .It Sy "Character sequence" Ta Sy "Replaced with"
171 .It Li "+<" Ta "Pad with a space"
172 .It Li "+A" Ta "Output of the external script"
173 .It Li "+C" Ta "Window class"
174 .It Li "+D" Ta "Workspace name"
175 .It Li "+F" Ta "Floating indicator"
176 .It Li "+I" Ta "Workspace index"
177 .It Li "+N" Ta "Screen number"
178 .It Li "+P" Ta "Window class and title separated by a colon"
179 .It Li "+S" Ta "Stacking algorithm"
180 .It Li "+T" Ta "Window title"
181 .It Li "+U" Ta "Urgency hint"
182 .It Li "+V" Ta "Program version"
183 .It Li "+W" Ta "Window 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 color_focus
225 Border color of the currently focussed window.
226 .It Ic color_unfocus
227 Border color of unfocussed windows.
228 .It Ic dialog_ratio
229 Some applications have dialogue windows that are too small to be useful.
230 This ratio is the screen size to what they will be resized.
231 For example, 0.6 is 60% of the physical screen size.
232 .It Ic disable_border
233 Remove border when bar is disabled and there is only one window on the
234 region.
235 .It Ic focus_close
236 Window to put focus when the focused window is closed.
237 Possible values are
238 .Pa first ,
239 .Pa next ,
240 .Pa previous
241 (default) and
242 .Pa last .
243 .Pa next
244 and
245 .Pa previous
246 are relative to the window that is closed.
247 .It Ic focus_close_wrap
248 Whether to allow the focus to jump to the last window when the first window
249 is closed or vice versa. Disable by setting to 0.
250 .It Ic focus_default
251 Window to put focus when no window has been focused. Possible values are
252 .Pa first
253 and
254 .Pa last
255 (default).
256 .It Ic focus_mode
257 Window focus behavior with respect to the mouse cursor. Possible values:
258 .Pp
259 .Bl -tag -width "default" -offset indent -compact
260 .It Cm default
261 Set window focus on border crossings caused by cursor motion and
262 window interaction.
263 .It Cm follow
264 Set window focus on all cursor border crossings, including workspace switches
265 and changes to layout.
266 .It Cm manual
267 Set window focus on window interaction only.
268 .El
269 .It Ic keyboard_mapping
270 Clear all key bindings and load new key bindings from the specified file.
271 This allows you to load pre-defined key bindings for your keyboard layout.
272 See the
273 .Sx KEYBOARD MAPPING FILES
274 section below for a list of keyboard mapping files that have been provided
275 for several keyboard layouts.
276 .It Ic layout
277 Select layout to use at start-of-day. Defined in the format
278 ws[idx]:master_grow:master_add:stack_inc:layout:always_raise:stack_mode, e.g.
279 ws[2]:-4:0:1:0:horizontal sets worskspace 2 to the horizontal stack mode and
280 shrinks the master area by 4 ticks and adds one window to the stack, while
281 maintaining default floating window behavior.
282 Possible stack_mode values are
283 .Pa vertical ,
284 .Pa vertical_flip ,
285 .Pa horizontal ,
286 .Pa horizontal_flip
287 and
288 .Pa fullscreen .
289 .Pp
290 See
291 .Pa master_grow ,
292 .Pa master_shrink ,
293 .Pa master_add ,
294 .Pa master_del ,
295 .Pa stack_inc ,
296 .Pa stack_dec ,
297 and
298 .Pa always_raise
299 for more information.
300 Note that the stacking options are complicated and have side-effects. One
301 should familiarize oneself with these commands before experimenting with the
302 .Pa layout
303 option.
304 .Pp
305 This setting is not retained at restart.
306 .It Ic modkey
307 Change mod key.
308 Mod1 is generally the ALT key and Mod4 is the windows key on a PC.
309 .It Ic program Ns Bq Ar p
310 Define new action to spawn a program
311 .Ar p .
312 See the
313 .Sx PROGRAMS
314 section below.
315 .It Ic quirk Ns Bq Ar c:n
316 Add "quirk" for windows with class
317 .Ar c
318 and name
319 .Ar n .
320 See the
321 .Sx QUIRKS
322 section below.
323 .It Ic region
324 Allocates a custom region, removing any autodetected regions which occupy the
325 same space on the screen.
326 Defined in the format screen[<idx>]:WIDTHxHEIGHT+X+Y,
327 e.g.\& screen[1]:800x1200+0+0.
328 .Pp
329 To make a region span multiple monitors, create a region big enough to cover
330 them all, e.g. screen[1]:2048x768+0+0 makes the region span two monitors with
331 1024x768 resolution sitting one next to the other.
332 .It Ic region_padding
333 Pixel width of empty space within region borders.
334 Disable by setting to 0.
335 .It Ic spawn_position
336 Position in stack to place newly spawned windows.
337 Possible values are
338 .Pa first ,
339 .Pa next ,
340 .Pa previous
341 and
342 .Pa last
343 (default).
344 .Pa next
345 and
346 .Pa previous
347 are relative to the focused window.
348 .It Ic stack_enabled
349 Enable or disable displaying the current stacking algorithm in the status
350 bar.
351 .It Ic term_width
352 Set a preferred minimum width for the terminal.
353 If this value is greater than 0,
354 .Nm
355 will attempt to adjust the font sizes in the terminal to keep the terminal
356 width above this number as the window is resized.
357 Only
358 .Xr xterm 1
359 is currently supported.
360 The
361 .Xr xterm 1
362 binary must not be setuid or setgid, which it is by default on most systems.
363 Users may need to set program[term] (see the
364 .Sx PROGRAMS
365 section) to use an alternate copy of the
366 .Xr xterm 1
367 binary without the setgid bit set.
368 .It Ic tile_gap
369 Pixel width of empty space between tiled windows. Negative values cause overlap.
370 Set this to the opposite of border_width to collapse the border between tiles.
371 Disable by setting to 0.
372 .It Ic title_class_enabled
373 Enable or disable displaying the window class in the status bar.
374 Enable by setting to 1.
375 .It Ic title_name_enabled
376 Enable or disable displaying the window title in the status bar.
377 Enable by setting to 1.
378 .It Ic urgent_enabled
379 Enable or disable the urgency hint indicator in the status bar.
380 Note that many terminal emulators require an explicit setting for the bell
381 character to trigger urgency on the window. In xterm, for example, one needs to
382 add the following line to
383 .Pa .Xdefaults :
384 .Bd -literal -offset indent
385 xterm.bellIsUrgent: true
386 .Ed
387 .It Ic verbose_layout
388 Enable or disable displaying the current master window count and stack column/row
389 count in the status bar.
390 Enable by setting to 1.
391 See
392 .Pa master_add ,
393 .Pa master_del ,
394 .Pa stack_inc
395 and
396 .Pa stack_dec
397 for more information.
398 .It Ic window_name_enabled
399 Enable or disable displaying the window name in the status bar.
400 Enable by setting to 1.
401 .Pp
402 To prevent excessively large window names from pushing the remaining text off
403 the bar, it's limited to 64 characters, by default.
404 See the
405 .Ic bar_format
406 option for more details.
407 .It Ic workspace_limit
408 Set the total number of workspaces available. Minimum is 1, maximum is 22,
409 default is 10.
410 .El
411 .Sh PROGRAMS
412 .Nm
413 allows you to define custom actions to launch programs of your choice and
414 then bind them the same as with built-in actions.
415 See the
416 .Sx BINDINGS
417 section below.
418 .Pp
419 Custom programs in the configuration file are specified as follows:
420 .Pp
421 .Dl program[<action>] = <progpath> [<arg> [... <arg>]]
422 .Pp
423 .Aq action
424 is any identifier that does not conflict with a built-in action or keyword,
425 .Aq progpath
426 is the desired program, and
427 .Aq arg
428 is zero or more arguments to the program.
429 .Pp
430 Remember that when using # in your program call, it must be escaped with a
431 backslash. i.e. \e#
432 .Pp
433 The following argument variables will be substituted for values at the time the program
434 is spawned:
435 .Pp
436 .Bl -tag -width "$bar_font_color" -offset indent -compact
437 .It Cm $bar_border
438 .It Cm $bar_color
439 .It Cm $bar_font
440 .It Cm $bar_font_color
441 .It Cm $color_focus
442 .It Cm $color_unfocus
443 .It Cm $dmenu_bottom
444 -b if bar_at_bottom is enabled.
445 .It Cm $region_index
446 .It Cm $workspace_index
447 .El
448 .Pp
449 Example:
450 .Bd -literal -offset indent
451 program[ff] = /usr/local/bin/firefox http://spectrwm.org/
452 bind[ff] = Mod+Shift+b # Now M-S-b launches firefox
453 .Ed
454 .Pp
455 To cancel the previous, unbind it:
456 .Bd -literal -offset indent
457 bind[] = Mod+Shift+b
458 .Ed
459 .Pp
460 Default programs:
461 .Bl -tag -width "screenshot_wind" -offset indent -compact
462 .It Cm lock
463 xlock
464 .It Cm menu
465 dmenu_run $dmenu_bottom \-fn $bar_font \-nb $bar_color \-nf $bar_font_color \-sb
466 $bar_border \-sf $bar_color
467 .It Cm term
468 xterm
469 .It Cm initscr
470 initscreen.sh # optional
471 .It Cm screenshot_all
472 screenshot.sh full # optional
473 .It Cm screenshot_wind
474 screenshot.sh window # optional
475 .El
476 .Pp
477 Note that optional default programs will not be validated unless overridden.
478 If a default program fails validation, you can resolve the exception
479 by installing the program, modifying the program call or disabling the program
480 by freeing the respective key binding.
481 .Pp
482 For example, to override
483 .Ic lock :
484 .Bd -literal -offset indent
485 program[lock] = xscreensaver-command --lock
486 .Ed
487 .Pp
488 To unbind
489 .Ic lock
490 and prevent it from being validated:
491 .Bd -literal -offset indent
492 bind[] = MOD+Shift+Delete
493 .Ed
494 .Sh BINDINGS
495 .Nm
496 provides many functions (or actions) accessed via key or mouse bindings.
497 .Pp
498 The current mouse bindings are described below:
499 .Pp
500 .Bl -tag -width "M-j, M-<TAB>XXX" -offset indent -compact
501 .It Cm M1
502 Focus window
503 .It Cm M-M1
504 Move window
505 .It Cm M-M3
506 Resize window
507 .It Cm M-S-M3
508 Resize window while maintaining it centered
509 .El
510 .Pp
511 The default key bindings are described below:
512 .Pp
513 .Bl -tag -width "M-j, M-<TAB>XXXXXX" -offset indent -compact
514 .It Cm M-S- Ns Aq Cm Return
515 term
516 .It Cm M-p
517 menu
518 .It Cm M-S-q
519 quit
520 .It Cm M-q
521 restart
522 .It Cm M- Ns Aq Cm Space
523 cycle_layout
524 .It Cm M-S- Ns Aq Cm \e
525 flip_layout
526 .It Cm M-S- Ns Aq Cm Space
527 stack_reset
528 .It Cm M-h
529 master_shrink
530 .It Cm M-l
531 master_grow
532 .It Cm M-,
533 master_add
534 .It Cm M-.
535 master_del
536 .It Cm M-S-,
537 stack_inc
538 .It Cm M-S-.
539 stack_dec
540 .It Cm M- Ns Aq Cm Return
541 swap_main
542 .It Xo
543 .Cm M-j ,
544 .Cm M- Ns Aq Cm TAB
545 .Xc
546 focus_next
547 .It Xo
548 .Cm M-k ,
549 .Cm M-S- Ns Aq Cm TAB
550 .Xc
551 focus_prev
552 .It Cm M-m
553 focus_main
554 .It Cm M-S-j
555 focus_urgent
556 .It Cm M-u
557 swap_next
558 .It Cm M-S-k
559 swap_prev
560 .It Cm M-b
561 bar_toggle
562 .It Cm M-S-b
563 bar_toggle_ws
564 .It Cm M-x
565 wind_del
566 .It Cm M-S-x
567 wind_kill
568 .It Cm M- Ns Aq Ar 1-9,0,F1-F12
569 .Pf ws_ Aq Ar 1-22
570 .It Cm M-S- Ns Aq Ar 1-9,0,F1-F12
571 .Pf mvws_ Ns Aq Ar 1-22
572 .It Cm M- Ns Aq Ar Keypad 1-9
573 .Pf rg_ Aq Ar 1-9
574 .It Cm M-S- Ns Aq Ar Keypad 1-9
575 .Pf mvrg_ Aq Ar 1-9
576 .It Cm M- Ns Aq Cm Right
577 ws_next
578 .It Cm M- Ns Aq Cm Left
579 ws_prev
580 .It Cm M- Ns Aq Cm Up
581 ws_next_all
582 .It Cm M- Ns Aq Cm Down
583 ws_prev_all
584 .It Cm M-a
585 ws_next_move
586 .It Cm M-S- Ns Aq Cm Left
587 ws_prev_move
588 .It Cm M-S- Ns Aq Cm Up
589 ws_prior
590 .It Cm M-S- Ns Aq Cm Right
591 rg_next
592 .It Cm M-S- Ns Aq Cm Left
593 rg_prev
594 .It Cm M-s
595 screenshot_all
596 .It Cm M-S-s
597 screenshot_wind
598 .It Cm M-S-v
599 version
600 .It Cm M-t
601 float_toggle
602 .It Cm M-S- Ns Aq Cm Delete
603 lock
604 .It Cm M-S-i
605 initscr
606 .It Cm M-w
607 iconify
608 .It Cm M-S-w
609 uniconify
610 .It Cm M-S-r
611 always_raise
612 .It Cm M-v
613 button2
614 .It Cm M--
615 width_shrink
616 .It Cm M-=
617 width_grow
618 .It Cm M-S--
619 height_shrink
620 .It Cm M-S-=
621 height_grow
622 .It Cm M-[
623 move_left
624 .It Cm M-]
625 move_right
626 .It Cm M-S-[
627 move_up
628 .It Cm M-S-]
629 move_down
630 .It Cm M-S-/
631 name_workspace
632 .It Cm M-/
633 search_workspace
634 .It Cm M-f
635 search_win
636 .El
637 .Pp
638 The action names and descriptions are listed below:
639 .Pp
640 .Bl -tag -width "M-j, M-<TAB>XXXX" -offset indent -compact
641 .It Cm term
642 Spawn a new terminal
643 (see
644 .Sx PROGRAMS
645 above).
646 .It Cm menu
647 Menu
648 (see
649 .Sx PROGRAMS
650 above).
651 .It Cm quit
652 Quit
653 .Nm .
654 .It Cm restart
655 Restart
656 .Nm .
657 .It Cm cycle_layout
658 Cycle layout.
659 .It Cm flip_layout
660 Swap the master and stacking areas.
661 .It Cm stack_reset
662 Reset layout.
663 .It Cm master_shrink
664 Shrink master area.
665 .It Cm master_grow
666 Grow master area.
667 .It Cm master_add
668 Add windows to master area.
669 .It Cm master_del
670 Remove windows from master area.
671 .It Cm stack_inc
672 Add columns/rows to stacking area.
673 .It Cm stack_dec
674 Remove columns/rows from stacking area.
675 .It Cm swap_main
676 Move current window to master area.
677 .It Cm focus_next
678 Focus next window in workspace.
679 .It Cm focus_prev
680 Focus previous window in workspace.
681 .It Cm focus_main
682 Focus on main window in workspace.
683 .It Cm focus_urgent
684 Focus on next window with the urgency hint flag set. The workspace is switched if needed.
685 .It Cm swap_next
686 Swap with next window in workspace.
687 .It Cm swap_prev
688 Swap with previous window in workspace.
689 .It Cm bar_toggle
690 Toggle overall visibility of status bars.
691 .It Cm bar_toggle_ws
692 Toggle status bar on current workspace.
693 .It Cm wind_del
694 Delete current window in workspace.
695 .It Cm wind_kill
696 Destroy current window in workspace.
697 .It Cm ws_ Ns Ar n
698 Switch to workspace
699 .Ar n ,
700 where
701 .Ar n
702 is 1 through workspace_limit.
703 .It Cm mvws_ Ns Ar n
704 Move current window to workspace
705 .Ar n ,
706 where
707 .Ar n
708 is 1 through workspace_limit.
709 .It Cm rg_ Ns Ar n
710 Focus on region
711 .Ar n ,
712 where
713 .Ar n
714 is 1 through 9.
715 .It Cm mvrg_ Ns Ar n
716 Move current window to region
717 .Ar n ,
718 where
719 .Ar n
720 is 1 through 9.
721 .It Cm ws_next
722 Switch to next workspace with a window in it.
723 .It Cm ws_prev
724 Switch to previous workspace with a window in it.
725 .It Cm ws_next_all
726 Switch to next workspace.
727 .It Cm ws_prev_all
728 Switch to previous workspace.
729 .It Cm ws_next_move
730 Switch to next workspace with the current window.
731 .It Cm ws_prev_move
732 Switch to previous workspace with the current window.
733 .It Cm ws_prior
734 Switch to last visited workspace.
735 .It Cm rg_next
736 Switch to next region.
737 .It Cm rg_prev
738 Switch to previous region.
739 .It Cm screenshot_all
740 Take screenshot of entire screen (if enabled)
741 (see
742 .Sx PROGRAMS
743 above).
744 .It Cm screenshot_wind
745 Take screenshot of selected window (if enabled)
746 (see
747 .Sx PROGRAMS
748 above).
749 .It Cm version
750 Toggle version in status bar.
751 .It Cm float_toggle
752 Toggle focused window between tiled and floating.
753 .It Cm lock
754 Lock screen
755 (see
756 .Sx PROGRAMS
757 above).
758 .It Cm initscr
759 Reinitialize physical screens
760 (see
761 .Sx PROGRAMS
762 above).
763 .It Cm iconify
764 Minimize (unmap) currently focused window.
765 .It Cm uniconify
766 Maximize (map) window returned by dmenu selection.
767 .It Cm always_raise
768 When set tiled windows are allowed to obscure floating windows.
769 .It Cm button2
770 Fake a middle mouse button click (mouse button 2).
771 .It Cm width_shrink
772 Shrink the width of a floating window.
773 .It Cm width_grow
774 Grow the width of a floating window.
775 .It Cm height_shrink
776 Shrink the height of a floating window.
777 .It Cm height_grow
778 Grow the height of a floating window.
779 .It Cm move_left
780 Move a floating window a step to the left.
781 .It Cm move_right
782 Move a floating window a step to the right.
783 .It Cm move_up
784 Move a floating window a step upwards.
785 .It Cm move_down
786 Move a floating window a step downwards.
787 .It Cm name_workspace
788 Name the current workspace.
789 .It Cm search_workspace
790 Search for a workspace.
791 .It Cm search_win
792 Search the windows in the current workspace.
793 .El
794 .Pp
795 Custom bindings in the configuration file are specified as follows:
796 .Pp
797 .Dl bind[<action>] = <keys>
798 .Pp
799 .Aq action
800 is one of the actions listed above (or empty to unbind) and
801 .Aq keys
802 is in the form of zero or more modifier keys
803 (MOD, Mod1, Shift, etc.) and one or more normal keys
804 (b, space, etc.), separated by "+".
805 .Pp
806 Example:
807 .Bd -literal -offset indent
808 bind[reset] = Mod4+q # bind Windows-key + q to reset
809 bind[] = Mod1+q # unbind Alt + q
810 .Ed
811 .Pp
812 To use the currently defined
813 .Ic modkey ,
814 specify MOD as the modifier key.
815 .Pp
816 Multiple key combinations may be bound to the same action.
817 .Pp
818 To bind non-latin characters such as å or π you must enter the xkb
819 character name instead of the character itself. Run xev, focus the window
820 and press the specific key and in the terminal output read the symbol name.
821 In the fallowing example for å:
822 .Bd -literal -offset indent
823 KeyPress event, serial 41, synthetic NO, window 0x2600001,
824 root 0x15a, subw 0x0, time 106213808, (11,5), root:(359,823),
825 state 0x0, keycode 24 (keysym 0xe5, aring), same_screen YES,
826 XLookupString gives 2 bytes: (c3 a5) "å"
827 XmbLookupString gives 2 bytes: (c3 a5) "å"
828 XFilterEvent returns: False
829 .Ed
830 .Pp
831 The xkb name is aring. In other words, in .spectrwm.conf add:
832 .Bd -literal -offset indent
833 bind[program] = MOD+aring
834 .Ed
835 .Sh KEYBOARD MAPPING FILES
836 Keyboard mapping files for several keyboard layouts are listed
837 below.
838 These files can be used with the
839 .Pa keyboard_mapping
840 setting to load pre-defined key bindings for the specified
841 keyboard layout.
842 .Pp
843 .Bl -tag -width "spectrwm_XX.confXXX" -offset indent -compact
844 .It Cm spectrwm_cz.conf
845 Czech Republic keyboard layout
846 .It Cm spectrwm_es.conf
847 Spanish keyboard layout
848 .It Cm spectrwm_fr.conf
849 French keyboard layout
850 .It Cm spectrwm_fr_ch.conf
851 Swiss French keyboard layout
852 .It Cm spectrwm_se.conf
853 Swedish keyboard layout
854 .It Cm spectrwm_us.conf
855 United States keyboard layout
856 .El
857 .Sh QUIRKS
858 .Nm
859 provides "quirks" which handle windows that must be treated specially
860 in a tiling window manager, such as some dialogs and fullscreen apps.
861 .Pp
862 The default quirks are described below:
863 .Pp
864 .Bl -tag -width "OpenOffice.org N.M:VCLSalFrame<TAB>XXX" -offset indent \
865 -compact
866 .It Firefox\-bin:firefox\-bin
867 TRANSSZ
868 .It Firefox:Dialog
869 FLOAT
870 .It Gimp:gimp
871 FLOAT + ANYWHERE
872 .It MPlayer:xv
873 FLOAT + FULLSCREEN + FOCUSPREV
874 .It OpenOffice.org 2.4:VCLSalFrame
875 FLOAT
876 .It OpenOffice.org 3.1:VCLSalFrame
877 FLOAT
878 .It pcb:pcb
879 FLOAT
880 .It xine:Xine Window
881 FLOAT + ANYWHERE
882 .It xine:xine Panel
883 FLOAT + ANYWHERE
884 .It xine:xine Video Fullscreen Window
885 FULLSCREEN + FLOAT
886 .It Xitk:Xitk Combo
887 FLOAT + ANYWHERE
888 .It Xitk:Xine Window
889 FLOAT + ANYWHERE
890 .It XTerm:xterm
891 XTERM_FONTADJ
892 .El
893 .Pp
894 The quirks themselves are described below:
895 .Pp
896 .Bl -tag -width "XTERM_FONTADJ<TAB>XXX" -offset indent -compact
897 .It FLOAT
898 This window should not be tiled, but allowed to float freely.
899 .It TRANSSZ
900 Adjusts size on transient windows that are too small using dialog_ratio
901 (see
902 .Sx CONFIGURATION FILES ) .
903 .It ANYWHERE
904 Allow window to position itself, uncentered.
905 .It XTERM_FONTADJ
906 Adjust xterm fonts when resizing.
907 .It FULLSCREEN
908 Remove border to allow window to use full region size.
909 .It FOCUSPREV
910 On exit force focus on previously focused application not previous
911 application in the stack.
912 .It NOFOCUSONMAP
913 Don't change focus to the window when it first appears on the screen.
914 Has no effect when
915 .Ic focus_mode
916 is set to follow.
917 .It FOCUSONMAP_SINGLE
918 When the window first appears on the screen, change focus to the window
919 if there are no other windows on the workspace with the same class/name.
920 Has no effect when
921 .Ic focus_mode
922 is set to follow.
923 .El
924 .Pp
925 Custom quirks in the configuration file are specified as follows:
926 .Pp
927 .Dl quirk[<class>:<name>] = <quirk> [ + <quirk> ... ]
928 .Pp
929 .Aq class
930 and
931 .Aq name
932 specify the window to which the quirk(s) apply, and
933 .Aq quirk
934 is one of the quirks from the list above.
935 For example:
936 .Bd -literal -offset indent
937 quirk[MPlayer:xv] = FLOAT + FULLSCREEN + FOCUSPREV
938 quirk[pcb:pcb] = NONE # remove existing quirk
939 .Ed
940 .Pp
941 You can obtain
942 .Aq class
943 and
944 .Aq name
945 by running
946 .Xr xprop 1
947 and then clicking on the desired window.
948 In the following example the main window of Firefox was clicked:
949 .Bd -literal -offset indent
950 $ xprop | grep WM_CLASS
951 WM_CLASS(STRING) = "Navigator", "Firefox"
952 .Ed
953 .Pp
954 Note that grepping for WM_CLASS flips class and name.
955 In the example above the quirk entry would be:
956 .Bd -literal -offset indent
957 quirk[Firefox:Navigator] = FLOAT
958 .Ed
959 .Pp
960 .Nm
961 also automatically assigns quirks to windows based on the value
962 of the window's _NET_WM_WINDOW_TYPE property as follows:
963 .Pp
964 .Bl -tag -width "_NET_WM_WINDOW_TYPE_TOOLBAR<TAB>XXX" -offset indent -compact
965 .It _NET_WM_WINDOW_TYPE_DOCK
966 FLOAT + ANYWHERE
967 .It _NET_WM_WINDOW_TYPE_TOOLBAR
968 FLOAT + ANYWHERE
969 .It _NET_WM_WINDOW_TYPE_UTILITY
970 FLOAT + ANYWHERE
971 .It _NET_WM_WINDOW_TYPE_SPLASH
972 FLOAT
973 .It _NET_WM_WINDOW_TYPE_DIALOG
974 FLOAT
975 .El
976 .Pp
977 In all other cases, no automatic quirks are assigned to the window.
978 Quirks specified in the configuration file override the automatic quirks.
979 .Sh EWMH
980 .Nm
981 partially implements the Extended Window Manager Hints (EWMH) specification.
982 This enables controlling windows as well as
983 .Nm
984 itself from external scripts and programs.
985 This is achieved by
986 .Nm
987 responding to certain ClientMessage events.
988 From the terminal these events
989 can be conveniently sent using tools such as
990 .Xr wmctrl 1
991 and
992 .Xr xdotool 1 .
993 For the
994 actual format of these ClientMessage events, see the EWMH specification.
995 .Pp
996 The id of the currently focused window is stored in the _NET_ACTIVE_WINDOW
997 property of the root window.
998 This can be used for example to retrieve the
999 title of the currently active window with
1000 .Xr xprop 1
1001 and
1002 .Xr grep 1 :
1003 .Bd -literal -offset indent
1004 $ WINDOWID=`xprop \-root _NET_ACTIVE_WINDOW | grep \-o "0x.*"`
1005 $ xprop \-id $WINDOWID WM_NAME | grep \-o "\\".*\\""
1006 .Ed
1007 .Pp
1008 A window can be focused by sending a _NET_ACTIVE_WINDOW client message
1009 to the root window.
1010 For example, using
1011 .Xr wmctrl 1
1012 to send the message
1013 (assuming 0x4a0000b is the id of the window to be focused):
1014 .Bd -literal -offset indent
1015 $ wmctrl \-i \-a 0x4a0000b
1016 .Ed
1017 .Pp
1018 Windows can be closed by sending a _NET_CLOSE_WINDOW client message
1019 to the root window.
1020 For example, using
1021 .Xr wmctrl 1
1022 to send the message
1023 (assuming 0x4a0000b is the id of the window to be closed):
1024 .Bd -literal -offset indent
1025 $ wmctrl \-i \-c 0x4a0000b
1026 .Ed
1027 .Pp
1028 Windows can be floated and un-floated by adding or removing the
1029 _NET_WM_STATE_ABOVE atom from the _NET_WM_STATE property of the window.
1030 This can be achieved by sending a _NET_WM_STATE client message to the
1031 root window.
1032 For example, the following toggles the floating state of
1033 a window using
1034 .Xr wmctrl 1
1035 to send the message (assuming 0x4a0000b is the id of the window floated
1036 or un-floated):
1037 .Bd -literal -offset indent
1038 $ wmctrl \-i \-r 0x4a0000b \-b toggle,_NET_WM_STATE_ABOVE
1039 .Ed
1040 .Pp
1041 Floating windows can also be resized and moved by sending a
1042 _NET_MOVERESIZE_WINDOW client message to the root window.
1043 For example,
1044 using
1045 .Xr wmctrl 1
1046 to send the message (assuming 0x4a0000b is the id of
1047 the window to be resize/moved):
1048 .Bd -literal -offset indent
1049 $ wmctrl \-i \-r 0x4a0000b \-e 0,100,50,640,480
1050 .Ed
1051 .Pp
1052 This moves the window to (100,50) and resizes it to 640x480.
1053 .Pp
1054 Any _NET_MOVERESIZE_WINDOW events received for stacked windows are ignored.
1055 .Sh SIGNALS
1056 Sending
1057 .Nm
1058 a HUP signal will restart it.
1059 .Sh FILES
1060 .Bl -tag -width "/etc/spectrwm.confXXX" -compact
1061 .It Pa ~/.spectrwm.conf
1062 .Nm
1063 user specific settings.
1064 .It Pa /etc/spectrwm.conf
1065 .Nm
1066 global settings.
1067 .El
1068 .Sh HISTORY
1069 .Nm
1070 was inspired by xmonad & dwm.
1071 .Sh AUTHORS
1072 .An -nosplit
1073 .Nm
1074 was written by:
1075 .Pp
1076 .Bl -tag -width "Ryan Thomas McBride Aq mcbride@countersiege.com " -offset \
1077 indent -compact
1078 .It Cm Marco Peereboom Aq marco@peereboom.us
1079 .It Cm Ryan Thomas McBride Aq mcbride@countersiege.com
1080 .It Cm Darrin Chandler Aq dwchandler@stilyagin.com
1081 .It Cm Pierre-Yves Ritschard Aq pyr@spootnik.org
1082 .It Cm Tuukka Kataja Aq stuge@xor.fi
1083 .It Cm Jason L. Wright Aq jason@thought.net
1084 .It Cm Reginald Kennedy Aq rk@rejii.com
1085 .It Cm Lawrence Teo Aq lteo@lteo.net
1086 .It Cm Tiago Cunha Aq tcunha@gmx.com
1087 .It Cm David Hill Aq dhill@mindcry.org
1088 .El