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