X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.def.h;h=0b5d9e4a4d87c3590e6d271b45b64adac7c6b9b9;hb=93a4fe1052e1271f7b4f519b4f2de4e3f4e15edc;hp=2e5f1a3462db5963b06e8727ff7170929d6a7f8b;hpb=3d6630b7d24685c767ecadc131b566d23d944a83;p=dwm.git diff --git a/config.def.h b/config.def.h index 2e5f1a3..0b5d9e4 100644 --- a/config.def.h +++ b/config.def.h @@ -21,13 +21,11 @@ Rule rules[] = { /* geometries, s{x,y,w,h} and bh are already initualized here */ /* func name bx by bw wx wy ww wh mx my mw mh tx ty tw th mox moy mow moh */ #define MFACT 0.55 /* master width factor [0.1 .. 0.9] */ -DEFGEOM(single, 0, 0, sw, 0, bh, sw, sh-bh, wx, wy, mfact*sw, wh, mx+mw, wy, ww-mw, wh, wx, wy, ww, wh) -/* DEFGEOM(dual, 0, 0,1280, 0, bh, ww, wh-bh, wx, wy, 1280,800-bh, 1280, 0, ww-mw, sh, mx, my, mw, mh) */ +DEFGEOM(single, 0, 0, sw, 0, bh, sw, sh-bh, wx, wy, mfact*ww, wh, mx+mw, wy, ww-mw, wh, wx, wy, ww, wh) Geom geoms[] = { /* symbol function */ { "[]", single }, /* first entry is default */ -/* { "[][]", dual }, */ }; /* layout(s) */ @@ -37,9 +35,8 @@ Geom geoms[] = { Layout layouts[] = { /* symbol function isfloating */ { "[]=", tilev, False }, /* first entry is default */ - { "[]|", tileh, False }, - { "><>", floating, True }, - { "[M]", monocle, True }, + { "><>", NULL, True }, + { "", monocle, True }, }; /* key definitions */ @@ -50,7 +47,9 @@ Key keys[] = { "exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" }, { MODKEY|ShiftMask, XK_Return, spawn, "exec uxterm" }, { MODKEY, XK_j, focusnext, NULL }, + { MODKEY|ShiftMask, XK_j, focusnext, "exact" }, { MODKEY, XK_k, focusprev, NULL }, + { MODKEY|ShiftMask, XK_k, focusprev, "exact" }, { MODKEY, XK_r, reapply, NULL }, { MODKEY, XK_h, setmfact, "-0.05" }, { MODKEY, XK_l, setmfact, "+0.05" },