X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=dwm.c;h=997a220f0cacb0bb9af5529d31528b47305b2aa5;hp=760ba27d9ff80ee978a4f0118934342fb1e59ac3;hb=b848f4bda8861115c04aecd9fd87baf928d931de;hpb=86c4797f2cd1e0d7fdbb4ebe83066762062e4217 diff --git a/dwm.c b/dwm.c index 760ba27..997a220 100644 --- a/dwm.c +++ b/dwm.c @@ -112,7 +112,7 @@ typedef struct { const char *symbol; void (*arrange)(void); Bool isfloating; -} Layout; +} Layout; typedef struct { const char *class; @@ -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 */