index.md - sites - public wiki contents of suckless.org
 (HTM) git clone git://git.suckless.org/sites
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       index.md (957B)
       ---
            1 Bottom stack
            2 ============
            3 
            4 Description
            5 -----------
            6 `bstack` and `bstackhoriz` are two bottom stack layouts for dwm.
            7 
            8 Include the sources in your `config.h` (after the definition of `mfact`)
            9 and update the layouts and key bindings.
           10 
           11         #include "bstack.c"
           12         #include "bstackhoriz.c"
           13         
           14         static const Layout layouts[] = {
           15                 /* symbol     arrange function */
           16                 ...
           17                 { "TTT",      bstack },
           18                 { "===",      bstackhoriz },
           19 
           20 
           21 Bottom Stack Tiling
           22 -------------------
           23         bstack        (TTT)
           24         +-----------------+
           25         |                 |
           26         |                 |
           27         |                 |
           28         +-----+-----+-----+
           29         |     |     |     |
           30         |     |     |     |
           31         +-----+-----+-----+
           32 
           33         bstackhoriz   (===)
           34         +-----------------+
           35         |                 |
           36         |                 |
           37         |                 |
           38         +-----------------+
           39         +-----------------+
           40         +-----------------+
           41         +-----------------+
           42 
           43 Download
           44 --------
           45 * [bstack.c](bstack.c) (dwm 5.6.1) (20090908)
           46 * [bstackhoriz.c](bstackhoriz.c) (dwm 5.6.1) (20090908)