tapplied the proposal by nsz - dwm - [fork] customized build of dwm, the dynamic window manager
 (HTM) git clone git://src.adamsgaard.dk/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b848f4bda8861115c04aecd9fd87baf928d931de
 (DIR) parent 86c4797f2cd1e0d7fdbb4ebe83066762062e4217
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Tue,  6 May 2008 15:52:44 +0100
       
       applied the proposal by nsz
       Diffstat:
         M dwm.c                               |       8 +++++---
       
       1 file changed, 5 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       t@@ -112,7 +112,7 @@ typedef struct {
                const char *symbol;
                void (*arrange)(void);
                Bool isfloating;
       -} Layout; 
       +} Layout;
        
        typedef struct {
                const char *class;
       t@@ -241,13 +241,15 @@ Client *stack = NULL;
        Cursor cursor[CurLast];
        Display *dpy;
        DC dc = {0};
       +Geom geoms[];
       +Geom *geom = geoms;
       +Layout layouts[];
       +Layout *lt = layouts;
        Window root, barwin;
        
        /* configuration, allows nested code to access above variables */
        #include "config.h"
        #define TAGSZ (LENGTH(tags) * sizeof(Bool))
       -Layout *lt = layouts;
       -Geom *geom = geoms;
        
        /* function implementations */