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