No description
Find a file
2012-09-21 12:15:25 +02:00
resources New logo 2012-08-21 19:10:26 +02:00
.bspwmrc events are caught 2012-08-01 23:16:07 +02:00
.gitignore Still filling map_request 2012-09-03 21:40:30 +02:00
bspc.c Dropping Lua for message parsing 2012-08-29 12:45:44 +02:00
bspwm.c Locked and urgent client states and colors 2012-09-20 23:32:32 +02:00
bspwm.h Fix hang related to SIGCHLD 2012-09-18 19:18:02 +02:00
common.h Fix apply_layout, dump_tree, insert_node, bye bsps 2012-09-13 13:56:53 +02:00
events.c Handle unmap notifications 2012-09-21 12:15:25 +02:00
events.h Locked and urgent client states and colors 2012-09-20 23:32:32 +02:00
ewmh.c Numerous fixes 2012-09-18 17:21:04 +02:00
ewmh.h Flush, EWMH, new events, presel border fix 2012-09-16 14:16:58 +02:00
helpers.h Toggle fullscreen, cycle leaf, more messages 2012-09-12 14:56:51 +02:00
luautils.c Fix truncated strings, named default colors 2012-09-12 19:10:37 +02:00
luautils.h Proper strings, drop non POSIX strdup 2012-09-10 13:47:51 +02:00
Makefile Numerous fixes 2012-09-18 17:21:04 +02:00
messages.c Locked and urgent client states and colors 2012-09-20 23:32:32 +02:00
messages.h Numerous fixes 2012-09-18 17:21:04 +02:00
README.mkd Fix desktop_cyle, try to handle unmap_notify 2012-09-20 16:32:01 +02:00
rules.c Fix "alternate" command, min width,height is 1,1 2012-09-20 11:50:25 +02:00
rules.h Fix "alternate" command, min width,height is 1,1 2012-09-20 11:50:25 +02:00
settings.c Locked and urgent client states and colors 2012-09-20 23:32:32 +02:00
settings.h Locked and urgent client states and colors 2012-09-20 23:32:32 +02:00
tree.c Handle unmap notifications 2012-09-21 12:15:25 +02:00
tree.h Locked and urgent client states and colors 2012-09-20 23:32:32 +02:00
types.c Handle unmap notifications 2012-09-21 12:15:25 +02:00
types.h Handle unmap notifications 2012-09-21 12:15:25 +02:00
utils.c Numerous fixes 2012-09-18 17:21:04 +02:00
utils.h Numerous fixes 2012-09-18 17:21:04 +02:00
window.c Handle unmap notifications 2012-09-21 12:15:25 +02:00
window.h Locked and urgent client states and colors 2012-09-20 23:32:32 +02:00

logo

Description

  • Windows are represented as the leaves of a binary tree.

  • To each leaf corresponds exactly one window.

  • The only nodes which can be focused are the leaves.

  • The leaves are called window nodes.

  • The other nodes are called container nodes.

  • Each container node is a split rectangle.

  • Only two methods of node insertion will be provided: replace and pair.

      Example: insertion of a new node (number 4) into the given tree with the
      *replace* method:
    
                   b                                   c
                  / \                                 / \
                 3   a              -->              4   b
                 ^  / \                              ^  / \
                   2   1                               3   a
                                                          / \
                                                         2   1
      +-------------------------+         +-------------------------+
      |            |            |         |            |            |
      |            |     2      |         |            |     3      |
      |            |            |         |            |            |
      |     3      |------------|   -->   |     4      |------------|
      |     ^      |            |         |     ^      |     |      |
      |            |     1      |         |            |  2  |  1   |
      |            |            |         |            |     |      |
      +-------------------------+         +-------------------------+
    
      And with the *pair* method:
    
                   b                                   b
                  / \                                 / \
                 3   a              -->              c   a
                 ^  / \                             / \ / \
                   2   1                           4  3 2  1
                                                   ^
      +-------------------------+         +-------------------------+
      |            |            |         |            |            |
      |            |     2      |         |     4      |     2      |
      |            |            |         |     ^      |            |
      |     3      |------------|   -->   |------------|------------|
      |     ^      |            |         |            |            |
      |            |     1      |         |     3      |     1      |
      |            |            |         |            |            |
      +-------------------------+         +-------------------------+
    

Features

  • Triple window borders. (Rationale: with single borders, it might happen that the color of the window border is too close to the color of its inner or outer environment to be visible.)
  • Directional pair splitting preselection (the feedback is drawn in the window border pixman).
  • Don't automatically give the focus to toolbar windows.
  • Set or get settings and call methods at runtime.
  • Configuration file in Lua.