X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.def.h;h=2813b3f352f1768f9eb3285602ffa212244bdde8;hb=c36f7c3c5e5db297689765142c64977f6317a21c;hp=e8ab532093d5fd7ba68c3711b1deabf2bca932f7;hpb=cdd6c3e820a360aaca1e8cd9c4b882bac1448261;p=dwm.git diff --git a/config.def.h b/config.def.h index e8ab532..2813b3f 100644 --- a/config.def.h +++ b/config.def.h @@ -13,6 +13,9 @@ /* tagging */ const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "www" }; +#define NTAGS (sizeof tags / sizeof tags[0]) +Bool seltags[NTAGS] = {[0] = True}; +Bool prevtags[NTAGS] = {[0] = True}; Rule rules[] = { /* class:instance:title regex tags regex isfloating */ { "Firefox", "www", False }, @@ -20,9 +23,9 @@ Rule rules[] = { { "MPlayer", NULL, True }, { "Acroread", NULL, True }, }; +#define NRULES (sizeof rules / sizeof rules[0]) /* layout(s) */ -#define ISTILE isarrange(tile) /* || isarrange() */ #define MWFACT 0.6 /* master width factor [0.1 .. 0.9] */ #define SNAP 32 /* snap pixel */ Layout layouts[] = { @@ -30,6 +33,7 @@ Layout layouts[] = { { "[]=", tile }, /* first entry is default */ { "><>", floating }, }; +#define NLAYOUTS (sizeof layouts / sizeof layouts[0]) /* key definitions */ #define MODKEY Mod1Mask @@ -91,3 +95,4 @@ Key keys[] = { \ { MODKEY|ControlMask|ShiftMask, XK_9, toggletag, tags[8] }, \ { MODKEY|ShiftMask, XK_q, quit, NULL }, \ }; +#define NKEYS (sizeof keys / sizeof keys[0])