]> git.lizzy.rs Git - bspwm.git/blob - doc/bspwm.1.asciidoc
fac7616f37394fd50077e9de8b078eda9d73973f
[bspwm.git] / doc / bspwm.1.asciidoc
1 :man source:   Bspwm
2 :man version:  {revnumber}
3 :man manual:   Bspwm Manual
4
5 bspwm(1)
6 ========
7
8 Name
9 ----
10
11 bspwm - Binary space partitioning window manager
12
13 Synopsis
14 --------
15
16 *bspwm* [*-h*|*-v*|*-c* 'CONFIG_PATH']
17
18 *bspc* 'DOMAIN' ['SELECTOR'] 'COMMANDS'
19
20 *bspc* 'COMMAND' ['OPTIONS'] ['ARGUMENTS']
21
22 Description
23 -----------
24
25 *bspwm* is a tiling window manager that represents windows as the leaves of a full binary tree.
26
27 It is controlled and configured via *bspc*.
28
29
30 Options
31 -------
32
33 *-h*::
34         Print the synopsis and exit.
35
36 *-v*::
37         Print the version and exit.
38
39 *-c* 'CONFIG_PATH'::
40         Use the given configuration file.
41
42 Common Definitions
43 ------------------
44
45 ----
46 DIR         := north | west | south | east
47 CYCLE_DIR   := next | prev
48 ----
49
50 Selectors
51 ---------
52
53 Selectors are used to select a target node, desktop, or monitor. A selector
54 can either describe the target relatively or name it globally.
55
56 Selectors consist of an optional reference, a descriptor and any number of
57 non-conflicting modifiers as follows:
58
59         [REFERENCE#]DESCRIPTOR(.MODIFIER)*
60
61 The relative targets are computed in relation to the given reference (the
62 default reference value is *focused*).
63
64 An exclamation mark can be prepended to any modifier in order to reverse its
65 meaning.
66
67 The following characters cannot be used in monitor or desktop names: *#*, *:*, *.*.
68
69 The special selector *%<name>* can be used to select a monitor or a desktop with an invalid name.
70
71 Node
72 ~~~~
73
74 Select a node.
75
76 ----
77 NODE_SEL := [NODE_SEL#](DIR|CYCLE_DIR|PATH|any|first_ancestor|last|newest|
78                         older|newer|focused|pointed|biggest|smallest|
79                         <node_id>)[.[!]focused][.[!]active][.[!]automatic][.[!]local]
80                                   [.[!]leaf][.[!]window][.[!]STATE][.[!]FLAG][.[!]LAYER]
81                                   [.[!]same_class][.[!]descendant_of][.[!]ancestor_of]
82
83 STATE := tiled|pseudo_tiled|floating|fullscreen
84
85 FLAG := hidden|sticky|private|locked|marked|urgent
86
87 LAYER := below|normal|above
88
89 PATH := @[DESKTOP_SEL:][[/]JUMP](/JUMP)*
90
91 JUMP := first|1|second|2|brother|parent|DIR
92 ----
93
94 Descriptors
95 ^^^^^^^^^^^
96
97 'DIR'::
98         Selects the window in the given (spacial) direction relative to the reference node.
99
100 'CYCLE_DIR'::
101         Selects the window in the given (cyclic) direction relative to the reference node.
102
103 'PATH'::
104         Selects the node at the given path.
105
106 any::
107         Selects the first node that matches the given selectors.
108
109 first_ancestor::
110         Selects the first ancestor of the reference node that matches the given selectors.
111
112 last::
113         Selects the previously focused node relative to the reference node.
114
115 newest::
116         Selects the newest node in the history of the focused node.
117
118 older::
119         Selects the node older than the reference node in the history.
120
121 newer::
122         Selects the node newer than the reference node in the history.
123
124 focused::
125         Selects the currently focused node.
126
127 pointed::
128         Selects the window under the pointer.
129
130 biggest::
131         Selects the biggest window.
132
133 smallest::
134         Selects the smallest window.
135
136 <node_id>::
137         Selects the node with the given ID.
138
139 Path Jumps
140 ^^^^^^^^^^
141
142 The initial node is the focused node (or the root if the path starts with '/') of the reference desktop (or the selected desktop if the path has a 'DESKTOP_SEL' prefix).
143
144 1|first::
145         Jumps to the first child.
146
147 2|second::
148         Jumps to the second child.
149
150 brother::
151         Jumps to the brother node.
152
153 parent::
154         Jumps to the parent node.
155
156 'DIR'::
157         Jumps to the node holding the edge in the given direction.
158
159 Modifiers
160 ^^^^^^^^^
161
162 [!]focused::
163         Only consider the focused node.
164
165 [!]active::
166         Only consider nodes that are the focused node of their desktop.
167
168 [!]automatic::
169         Only consider nodes in automatic insertion mode. See also *--presel-dir* under *Node* in the *DOMAINS* section below.
170
171 [!]local::
172         Only consider nodes in the reference desktop.
173
174 [!]leaf::
175         Only consider leaf nodes.
176
177 [!]window::
178         Only consider nodes that hold a window.
179
180 [!](tiled|pseudo_tiled|floating|fullscreen)::
181         Only consider windows in the given state.
182
183 [!]same_class::
184         Only consider windows that have the same class as the reference window.
185
186 [!]descendant_of::
187         Only consider nodes that are descendants of the reference node.
188
189 [!]ancestor_of::
190         Only consider nodes that are ancestors of the reference node.
191
192 [!](hidden|sticky|private|locked|marked|urgent)::
193         Only consider windows that have the given flag set.
194
195 [!](below|normal|above)::
196         Only consider windows in the given layer.
197
198 Desktop
199 ~~~~~~~
200
201 Select a desktop.
202
203 ----
204 DESKTOP_SEL := [DESKTOP_SEL#](CYCLE_DIR|any|last|newest|older|newer|
205                               [MONITOR_SEL:](focused|^<n>)|
206                               <desktop_id>|<desktop_name>)[.[!]focused][.[!]active]
207                                                           [.[!]occupied][.[!]urgent][.[!]local]
208 ----
209
210 Descriptors
211 ^^^^^^^^^^^
212
213 'CYCLE_DIR'::
214         Selects the desktop in the given direction relative to the reference desktop.
215
216 any::
217         Selects the first desktop that matches the given selectors.
218
219 last::
220         Selects the previously focused desktop relative to the reference desktop.
221
222 newest::
223         Selects the newest desktop in the history of the focused desktops.
224
225 older::
226         Selects the desktop older than the reference desktop in the history.
227
228 newer::
229         Selects the desktop newer than the reference desktop in the history.
230
231 focused::
232         Selects the currently focused desktop.
233
234 ^<n>::
235         Selects the nth desktop. If *MONITOR_SEL* is given, selects the nth desktop on the selected monitor.
236
237 <desktop_id>::
238         Selects the desktop with the given ID.
239
240 <desktop_name>::
241         Selects the desktop with the given name.
242
243 Modifiers
244 ^^^^^^^^^
245
246 [!]focused::
247         Only consider the focused desktop.
248
249 [!]active::
250         Only consider desktops that are the focused desktop of their monitor.
251
252 [!]occupied::
253         Only consider occupied desktops.
254
255 [!]urgent::
256         Only consider urgent desktops.
257
258 [!]local::
259         Only consider desktops inside the reference monitor.
260
261 Monitor
262 ~~~~~~~
263
264 Select a monitor.
265
266 ----
267 MONITOR_SEL := [MONITOR_SEL#](DIR|CYCLE_DIR|any|last|newest|older|newer|
268                               focused|pointed|primary|^<n>|
269                               <monitor_id>|<monitor_name>)[.[!]focused][.[!]occupied]
270 ----
271
272 Descriptors
273 ^^^^^^^^^^^
274
275 'DIR'::
276         Selects the monitor in the given (spacial) direction relative to the reference monitor.
277
278 'CYCLE_DIR'::
279         Selects the monitor in the given (cyclic) direction relative to the reference monitor.
280
281 any::
282         Selects the first monitor that matches the given selectors.
283
284 last::
285         Selects the previously focused monitor relative to the reference monitor.
286
287 newest::
288         Selects the newest monitor in the history of the focused monitors.
289
290 older::
291         Selects the monitor older than the reference monitor in the history.
292
293 newer::
294         Selects the monitor newer than the reference monitor in the history.
295
296 focused::
297         Selects the currently focused monitor.
298
299 pointed::
300         Selects the monitor under the pointer.
301
302 primary::
303         Selects the primary monitor.
304
305 ^<n>::
306         Selects the nth monitor.
307
308 <monitor_id>::
309         Selects the monitor with the given ID.
310
311 <monitor_name>::
312         Selects the monitor with the given name.
313
314
315 Modifiers
316 ^^^^^^^^^
317
318 [!]focused::
319         Only consider the focused monitor.
320
321 [!]occupied::
322         Only consider monitors where the focused desktop is occupied.
323
324
325
326 Window States
327 -------------
328
329 tiled::
330         Its size and position are determined by the window tree.
331
332 pseudo_tiled::
333         A tiled window that automatically shrinks but doesn't stretch beyond its floating size.
334
335 floating::
336         Can be moved/resized freely. Although it doesn't use any tiling space, it is still part of the window tree.
337
338 fullscreen::
339         Fills its monitor rectangle and has no borders.
340
341
342 Node Flags
343 ----------
344
345 hidden::
346         Is hidden and doesn't occupy any tiling space.
347
348 sticky::
349         Stays in the focused desktop of its monitor.
350
351 private::
352         Tries to keep the same tiling position/size.
353
354 locked::
355         Ignores the *node --close* message.
356
357 marked::
358         Is marked (useful for deferred actions). A marked node becomes unmarked after being sent on a preselected node.
359
360 urgent::
361         Has its urgency hint set. This flag is set externally.
362
363
364 Stacking Layers
365 --------------
366
367 There's three stacking layers: BELOW, NORMAL and ABOVE.
368
369 In each layer, the window are orderered as follow: tiled & pseudo-tiled < floating < fullscreen.
370
371 Receptacles
372 -----------
373
374 A leaf node that doesn't hold any window is called a receptacle. When a node is inserted on a receptacle in automatic mode, it will replace the receptacle. A receptacle can be inserted on a node, preselected and killed. Receptacles can therefore be used to build a tree whose leaves are receptacles. Using the appropriate rules, one can then send windows on the leaves of this tree. This feature is used in 'examples/receptacles' to store and recreate layouts.
375
376
377 Domains
378 -------
379
380 Node
381 ~~~~
382
383 General Syntax
384 ^^^^^^^^^^^^^^
385
386 node ['NODE_SEL'] 'COMMANDS'
387
388 If 'NODE_SEL' is omitted, *focused* is assumed.
389
390 Commands
391 ^^^^^^^^
392 *-f*, *--focus* ['NODE_SEL']::
393         Focus the selected or given node.
394
395 *-a*, *--activate* ['NODE_SEL']::
396         Activate the selected or given node.
397
398 *-d*, *--to-desktop* 'DESKTOP_SEL' [*--follow*]::
399         Send the selected node to the given desktop. If *--follow* is passed, the focused node will stay focused.
400
401 *-m*, *--to-monitor* 'MONITOR_SEL' [*--follow*]::
402         Send the selected node to the given monitor. If *--follow* is passed, the focused node will stay focused.
403
404 *-n*, *--to-node* 'NODE_SEL' [*--follow*]::
405         Send the selected node on the given node. If *--follow* is passed, the focused node will stay focused.
406
407 *-s*, *--swap* 'NODE_SEL' [*--follow*]::
408         Swap the selected node with the given node. If *--follow* is passed, the focused node will stay focused.
409
410 *-p*, *--presel-dir* \[~]'DIR'|cancel::
411         Preselect the splitting area of the selected node (or cancel the preselection). If *~* is prepended to 'DIR' and the current preselection direction matches 'DIR', then the argument is interpreted as *cancel*. A node with a preselected area is said to be in "manual insertion mode".
412
413 *-o*, *--presel-ratio* 'RATIO'::
414         Set the splitting ratio of the preselection area.
415
416 *-v*, *--move* 'dx' 'dy'::
417         Move the selected window by 'dx' pixels horizontally and 'dy' pixels vertically.
418
419 *-z*, *--resize* top|left|bottom|right|top_left|top_right|bottom_right|bottom_left 'dx' 'dy'::
420         Resize the selected window by moving the given handle by 'dx' pixels horizontally and 'dy' pixels vertically.
421
422 *-r*, *--ratio* 'RATIO'|(+|-)('PIXELS'|'FRACTION')::
423         Set the splitting ratio of the selected node (0 < 'RATIO' < 1).
424
425 *-R*, *--rotate* '90|270|180'::
426         Rotate the tree rooted at the selected node.
427
428 *-F*, *--flip* 'horizontal|vertical'::
429         Flip the the tree rooted at selected node.
430
431 *-E*, *--equalize*::
432         Reset the split ratios of the tree rooted at the selected node to their default value.
433
434 *-B*, *--balance*::
435         Adjust the split ratios of the tree rooted at the selected node so that all windows occupy the same area.
436
437 *-C*, *--circulate* forward|backward::
438         Circulate the windows of the tree rooted at the selected node.
439
440 *-t*, *--state* [~](tiled|pseudo_tiled|floating|fullscreen)::
441         Set the state of the selected window. If *~* is present and the current state matches the given state, then the argument is interpreted as the last state.
442
443 *-g*, *--flag* hidden|sticky|private|locked|marked[=on|off]::
444         Set or toggle the given flag for the selected node.
445
446 *-l*, *--layer* below|normal|above::
447         Set the stacking layer of the selected window.
448
449 *-i*, *--insert-receptacle*::
450         Insert a receptacle node at the selected node.
451
452 *-c*, *--close*::
453         Close the windows rooted at the selected node.
454
455 *-k*, *--kill*::
456         Kill the windows rooted at the selected node.
457
458 Desktop
459 ~~~~~~~
460
461 General Syntax
462 ^^^^^^^^^^^^^^
463
464 desktop ['DESKTOP_SEL'] 'COMMANDS'
465
466 If 'DESKTOP_SEL' is omitted, *focused* is assumed.
467
468 COMMANDS
469 ^^^^^^^^
470 *-f*, *--focus* ['DESKTOP_SEL']::
471         Focus the selected or given desktop.
472
473 *-a*, *--activate* ['DESKTOP_SEL']::
474         Activate the selected or given desktop.
475
476 *-m*, *--to-monitor* 'MONITOR_SEL' [*--follow*]::
477         Send the selected desktop to the given monitor. If *--follow* is passed, the focused desktop will stay focused.
478
479 *-s*, *--swap* 'DESKTOP_SEL' [*--follow*]::
480         Swap the selected desktop with the given desktop. If *--follow* is passed, the focused desktop will stay focused.
481
482 *-l*, *--layout* 'CYCLE_DIR'|monocle|tiled::
483         Set or cycle the layout of the selected desktop.
484
485 *-n*, *--rename* <new_name>::
486         Rename the selected desktop.
487
488 *-b*, *--bubble* 'CYCLE_DIR'::
489         Bubble the selected desktop in the given direction.
490
491 *-r*, *--remove*::
492         Remove the selected desktop.
493
494 Monitor
495 ~~~~~~~
496
497 General Syntax
498 ^^^^^^^^^^^^^^
499
500 monitor ['MONITOR_SEL'] 'COMMANDS'
501
502 If 'MONITOR_SEL' is omitted, *focused* is assumed.
503
504 Commands
505 ^^^^^^^^
506 *-f*, *--focus* ['MONITOR_SEL']::
507         Focus the selected or given monitor.
508
509 *-s*, *--swap* 'MONITOR_SEL'::
510         Swap the selected monitor with the given monitor.
511
512 *-a*, *--add-desktops* <name>...::
513         Create desktops with the given names in the selected monitor.
514
515 *-o*, *--reorder-desktops* <name>...::
516         Reorder the desktops of the selected monitor to match the given order.
517
518 *-d*, *--reset-desktops* <name>...::
519         Rename, add or remove desktops depending on whether the number of given names is equal, superior or inferior to the number of existing desktops.
520
521 *-g*, *--rectangle* WxH+X+Y::
522         Set the rectangle of the selected monitor.
523
524 *-n*, *--rename* <new_name>::
525         Rename the selected monitor.
526
527 *-r*, *--remove*::
528         Remove the selected monitor.
529
530 Query
531 ~~~~~
532
533 General Syntax
534 ^^^^^^^^^^^^^^
535
536 query 'COMMANDS' ['OPTIONS']
537
538 Commands
539 ^^^^^^^^
540
541 The optional selectors are references.
542
543 *-N*, *--nodes* ['NODE_SEL']::
544         List the IDs of the matching nodes.
545
546 *-D*, *--desktops* ['DESKTOP_SEL']::
547         List the IDs (or names) of the matching desktops.
548
549 *-M*, *--monitors* ['MONITOR_SEL']::
550         List the IDs (or names) of the matching monitors.
551
552 *-T*, *--tree*::
553         Print a JSON representation of the matching item.
554
555 Options
556 ^^^^^^^
557
558 *-m*,*--monitor* ['MONITOR_SEL']::
559 *-d*,*--desktop* ['DESKTOP_SEL']::
560 *-n*, *--node* ['NODE_SEL']::
561         Constrain matches to the selected monitor, desktop or node. The descriptor can be omitted for '-M', '-D' and '-N'.
562
563 *--names*::
564         Print names instead of IDs. Can only be used with '-M' and '-D'.
565
566 Wm
567 ~~
568
569 General Syntax
570 ^^^^^^^^^^^^^^
571
572 wm 'COMMANDS'
573
574 Commands
575 ^^^^^^^^
576
577 *-d*, *--dump-state*::
578         Dump the current world state on standard output.
579
580 *-l*, *--load-state* <file_path>::
581         Load a world state from the given file. The path must be absolute.
582
583 *-a*, *--add-monitor* <name> WxH+X+Y::
584         Add a monitor for the given name and rectangle.
585
586 *-O*, *--reorder-monitors* <name>...::
587         Reorder the list of monitors to match the given order.
588
589 *-o*, *--adopt-orphans*::
590         Manage all the unmanaged windows remaining from a previous session.
591
592 *-h*, *--record-history* on|off::
593         Enable or disable the recording of node focus history.
594
595 *-g*, *--get-status*::
596         Print the current status information.
597
598 *-r*, *--restart*::
599         Restart the window manager
600
601 Rule
602 ~~~~
603
604 General Syntax
605 ^^^^^^^^^^^^^^
606
607 rule 'COMMANDS'
608
609 Commands
610 ^^^^^^^^
611
612 *-a*, *--add* (<class_name>|\*)[:(<instance_name>|\*)] [*-o*|*--one-shot*] [monitor=MONITOR_SEL|desktop=DESKTOP_SEL|node=NODE_SEL] [state=STATE] [layer=LAYER] [split_dir=DIR] [split_ratio=RATIO] [(hidden|sticky|private|locked|marked|center|follow|manage|focus|border)=(on|off)] [rectangle=WxH+X+Y]::
613         Create a new rule.
614
615 *-r*, *--remove* ^<n>|head|tail|(<class_name>|\*)[:(<instance_name>|*)]...::
616         Remove the given rules.
617
618 *-l*, *--list*::
619         List the rules.
620
621 Config
622 ~~~~~~
623
624 General Syntax
625 ^^^^^^^^^^^^^^
626
627 config [-m 'MONITOR_SEL'|-d 'DESKTOP_SEL'|-n 'NODE_SEL'] <setting> [<value>]::
628         Get or set the value of <setting>.
629
630 Subscribe
631 ~~~~~~~~~
632
633 General Syntax
634 ^^^^^^^^^^^^^^
635 subscribe ['OPTIONS'] (all|report|monitor|desktop|node|...)*::
636         Continuously print events. See the *EVENTS* section for the description of each event.
637
638 Options
639 ^^^^^^^
640
641 *-f*, *--fifo*::
642         Print a path to a FIFO from which events can be read and return.
643
644 *-c*, *--count* 'COUNT'::
645         Stop the corresponding *bspc* process after having received 'COUNT' events.
646
647 Quit
648 ~~~~
649
650 General Syntax
651 ^^^^^^^^^^^^^^
652
653 quit [<status>]::
654         Quit with an optional exit status.
655
656 Exit Codes
657 ----------
658
659 If the server can't handle a message, *bspc* will return with a non-zero exit code.
660
661 Settings
662 --------
663 Colors are in the form '#RRGGBB', booleans are 'true', 'on', 'false' or 'off'.
664
665 All the boolean settings are 'false' by default unless stated otherwise.
666
667 Global Settings
668 ~~~~~~~~~~~~~~~
669
670 'normal_border_color'::
671         Color of the border of an unfocused window.
672
673 'active_border_color'::
674         Color of the border of a focused window of an unfocused monitor.
675
676 'focused_border_color'::
677         Color of the border of a focused window of a focused monitor.
678
679 'presel_feedback_color'::
680         Color of the *node --presel-{dir,ratio}* message feedback area.
681
682 'split_ratio'::
683         Default split ratio.
684
685 'status_prefix'::
686         Prefix prepended to each of the status lines.
687
688 'external_rules_command'::
689         Absolute path to the command used to retrieve rule consequences. The command will receive the following arguments: window ID, class name, instance name, and intermediate consequences. The output of that command must have the following format: *key1=value1 key2=value2 ...* (the valid key/value pairs are given in the description of the 'rule' command).
690
691 'automatic_scheme'::
692         The insertion scheme used when the insertion point is in automatic mode. Accept the following values: *longest_side*, *alternate*, *spiral*.
693
694 'initial_polarity'::
695         On which child should a new window be attached when adding a window on a single window tree in automatic mode. Accept the following values: *first_child*, *second_child*.
696
697 'directional_focus_tightness'::
698         The tightness of the algorithm used to decide whether a window is on the 'DIR' side of another window. Accept the following values: *high*, *low*.
699
700 'removal_adjustment'::
701         Adjust the brother when unlinking a node from the tree in accordance with the automatic insertion scheme.
702
703 'presel_feedback'::
704         Draw the preselection feedback area. Defaults to 'true'.
705
706 'borderless_monocle'::
707         Remove borders of tiled windows for the *monocle* desktop layout.
708
709 'gapless_monocle'::
710         Remove gaps of tiled windows for the *monocle* desktop layout.
711
712 'top_monocle_padding'::
713 'right_monocle_padding'::
714 'bottom_monocle_padding'::
715 'left_monocle_padding'::
716         Padding space added at the sides of the screen for the *monocle* desktop layout.
717
718 'single_monocle'::
719         Set the desktop layout to *monocle* if there's only one tiled window in the tree.
720
721 'pointer_motion_interval'::
722         The minimum interval, in milliseconds, between two motion notify events.
723
724 'pointer_modifier'::
725         Keyboard modifier used for moving or resizing windows. Accept the following values: *shift*, *control*, *lock*, *mod1*, *mod2*, *mod3*, *mod4*, *mod5*.
726
727 'pointer_action1'::
728 'pointer_action2'::
729 'pointer_action3'::
730         Action performed when pressing 'pointer_modifier' + 'button<n>'. Accept the following values: *move*, *resize_side*, *resize_corner*, *focus*, *none*.
731
732 'click_to_focus'::
733         Button used for focusing a window (or a monitor). The possible values are: *button1*, *button2*, *button3*, *any*, *none*. Defaults to *button1*.
734
735 'swallow_first_click'::
736         Don't replay the click that makes a window focused if 'click_to_focus' isn't *none*.
737
738 'focus_follows_pointer'::
739         Focus the window under the pointer.
740
741 'pointer_follows_focus'::
742         When focusing a window, put the pointer at its center.
743
744 'pointer_follows_monitor'::
745         When focusing a monitor, put the pointer at its center.
746
747 'mapping_events_count'::
748         Handle the next *mapping_events_count* mapping notify events. A negative value implies that every event needs to be handled.
749
750 'ignore_ewmh_focus'::
751         Ignore EWMH focus requests coming from applications.
752
753 'ignore_ewmh_fullscreen'::
754         Block the fullscreen state transitions that originate from an EWMH request. The possible values are: *none*, *all*, or a comma separated list of the following values: *enter*, *exit*.
755
756 'ignore_ewmh_struts'::
757         BIgnore strut hinting from clients requesting to reserve space (i.e. task bars).
758
759 'center_pseudo_tiled'::
760         Center pseudo tiled windows into their tiling rectangles. Defaults to 'true'.
761
762 'honor_size_hints'::
763         Apply ICCCM window size hints.
764
765 'remove_disabled_monitors'::
766         Consider disabled monitors as disconnected.
767
768 'remove_unplugged_monitors'::
769         Remove unplugged monitors.
770
771 'merge_overlapping_monitors'::
772         Merge overlapping monitors (the bigger remains).
773
774 Monitor and Desktop Settings
775 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
776
777 'top_padding'::
778 'right_padding'::
779 'bottom_padding'::
780 'left_padding'::
781         Padding space added at the sides of the monitor or desktop.
782
783 Desktop Settings
784 ~~~~~~~~~~~~~~~~
785
786 'window_gap'::
787         Size of the gap that separates windows.
788
789 Node Settings
790 ~~~~~~~~~~~~~
791
792 'border_width'::
793         Window border width.
794
795 Pointer Bindings
796 ----------------
797
798 'click_to_focus'::
799         Focus the window (or the monitor) under the pointer if the value isn't *none*.
800
801 'pointer_modifier' + 'button1'::
802         Move the window under the pointer.
803
804 'pointer_modifier' + 'button2'::
805         Resize the window under the pointer by dragging the nearest side.
806
807 'pointer_modifier' + 'button3'::
808         Resize the window under the pointer by dragging the nearest corner.
809
810 The behavior of 'pointer_modifier' + 'button<n>' can be modified through the 'pointer_action<n>' setting.
811
812 Events
813 ------
814
815 'report'::
816         See the next section for the description of the format.
817
818 'monitor_add <monitor_id> <monitor_name> <monitor_geometry>'::
819         A monitor is added.
820
821 'monitor_rename <monitor_id> <old_name> <new_name>'::
822         A monitor is renamed.
823
824 'monitor_remove <monitor_id>'::
825         A monitor is removed.
826
827 'monitor_swap <src_monitor_id> <dst_monitor_id>'::
828         A monitor is swapped.
829
830 'monitor_focus <monitor_id>'::
831         A monitor is focused.
832
833 'monitor_geometry <monitor_id> <monitor_geometry>'::
834         The geometry of a monitor changed.
835
836 'desktop_add <monitor_id> <desktop_id> <desktop_name>'::
837         A desktop is added.
838
839 'desktop_rename <monitor_id> <desktop_id> <old_name> <new_name>'::
840         A desktop is renamed.
841
842 'desktop_remove <monitor_id> <desktop_id>'::
843         A desktop is removed.
844
845 'desktop_swap <src_monitor_id> <src_desktop_id> <dst_monitor_id> <dst_desktop_id>'::
846         A desktop is swapped.
847
848 'desktop_transfer <src_monitor_id> <src_desktop_id> <dst_monitor_id>'::
849         A desktop is transferred.
850
851 'desktop_focus <monitor_id> <desktop_id>'::
852         A desktop is focused.
853
854 'desktop_activate <monitor_id> <desktop_id>'::
855         A desktop is activated.
856
857 'desktop_layout <monitor_id> <desktop_id> tiled|monocle'::
858         The layout of a desktop changed.
859
860 'node_add <monitor_id> <desktop_id> <ip_id> <node_id>'::
861         A node is added.
862
863 'node_remove <monitor_id> <desktop_id> <node_id>'::
864         A node is removed.
865
866 'node_swap <src_monitor_id> <src_desktop_id> <src_node_id> <dst_monitor_id> <dst_desktop_id> <dst_node_id>'::
867         A node is swapped.
868
869 'node_transfer <src_monitor_id> <src_desktop_id> <src_node_id> <dst_monitor_id> <dst_desktop_id> <dst_node_id>'::
870         A node is transferred.
871
872 'node_focus <monitor_id> <desktop_id> <node_id>'::
873         A node is focused.
874
875 'node_activate <monitor_id> <desktop_id> <node_id>'::
876         A node is activated.
877
878 'node_presel <monitor_id> <desktop_id> <node_id> (dir DIR|ratio RATIO|cancel)'::
879         A node is preselected.
880
881 'node_stack <node_id_1> below|above <node_id_2>'::
882         A node is stacked below or above another node.
883
884 'node_geometry <monitor_id> <desktop_id> <node_id> <node_geometry>'::
885         The geometry of a window changed.
886
887 'node_state <monitor_id> <desktop_id> <node_id> tiled|pseudo_tiled|floating|fullscreen on|off'::
888         The state of a window changed.
889
890 'node_flag <monitor_id> <desktop_id> <node_id> hidden|sticky|private|locked|marked|urgent on|off'::
891         One of the flags of a node changed.
892
893 'node_layer <monitor_id> <desktop_id> <node_id> below|normal|above'::
894         The layer of a window changed.
895
896 'pointer_action <monitor_id> <desktop_id> <node_id> move|resize_corner|resize_side begin|end'::
897         A pointer action occured.
898
899 Please note that *bspwm* initializes monitors before it reads messages on its socket, therefore the initial monitor events can't be received.
900
901 Report Format
902 -------------
903
904 Each report event message is composed of items separated by colons.
905
906 Each item has the form '<type><value>' where '<type>' is the first character of the item.
907
908 'M<monitor_name>'::
909         Focused monitor.
910
911 'm<monitor_name>'::
912         Unfocused monitor.
913
914 'O<desktop_name>'::
915         Occupied focused desktop.
916
917 'o<desktop_name>'::
918         Occupied unfocused desktop.
919
920 'F<desktop_name>'::
921         Free focused desktop.
922
923 'f<desktop_name>'::
924         Free unfocused desktop.
925
926 'U<desktop_name>'::
927         Urgent focused desktop.
928
929 'u<desktop_name>'::
930         Urgent unfocused desktop.
931
932 'L(T|M)'::
933         Layout of the focused desktop of a monitor.
934
935 'T(T|P|F|=|@)'::
936         State of the focused node of a focused desktop.
937
938 'G(S?P?L?M?)'::
939         Active flags of the focused node of a focused desktop.
940
941 Environment Variables
942 ---------------------
943
944 'BSPWM_SOCKET'::
945         The path of the socket used for the communication between *bspc* and *bspwm*. If it isn't defined, then the following path is used: '/tmp/bspwm<host_name>_<display_number>_<screen_number>-socket'.
946
947 Contributors
948 ------------
949
950 * Steven Allen <steven at stebalien.com>
951 * Thomas Adam <thomas at xteddy.org>
952 * Ivan Kanakarakis <ivan.kanak at gmail.com>
953
954 Author
955 ------
956
957 Bastien Dejean <nihilhill at gmail.com>