X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.def.h;h=f6d90d8c7224ce6eb132b8a1f0cb5f73b7083a73;hb=dba22848c7d077c1a988a901c9390dc3c8cc9d64;hp=4254c43a039f571bcb4e630f91d0e62fcaf7bcfc;hpb=e237b2a76fb3dac1f43b91e5c7b6adb9ef04c9ed;p=dwm.git diff --git a/config.def.h b/config.def.h index 4254c43..f6d90d8 100644 --- a/config.def.h +++ b/config.def.h @@ -9,6 +9,19 @@ #define SELBORDERCOLOR "#0066ff" #define SELBGCOLOR "#0066ff" #define SELFGCOLOR "#ffffff" +#define GEOMETRY "0 0 W B " \ + "0 B W H-B " \ + "0 B W*0.55 H-B " \ + "W*0.55 B W*0.45 H-B " \ + "0 B W H-B" + +/* Anselm's dual head geometry in the office */ +#define DUALGEOMETRY "0 0 1280 B " \ + "0 B W H-B " \ + "0 B 1280 800-B " \ + "1280 0 W-1280 H " \ + "0 B 1280 800-B" + /* tagging */ const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; @@ -21,9 +34,6 @@ Rule rules[] = { { NULL, NULL, "Acroread", NULL, True }, }; -/* geometry function */ -void (*setgeoms)(void) = setdefgeoms; - /* layout(s) */ #define RESIZEHINTS True /* False - respect size hints in tiled resizals */ #define SNAP 32 /* snap pixel */ @@ -40,6 +50,8 @@ Layout layouts[] = { #define MODKEY Mod1Mask Key keys[] = { /* modifier key function argument */ + { MODKEY, XK_a, setgeom, DUALGEOMETRY }, + { MODKEY, XK_d, setgeom, GEOMETRY }, { MODKEY, XK_p, spawn, "exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" }, { MODKEY|ShiftMask, XK_Return, spawn, "exec uxterm" },