diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 5285dbd..9293d16 100644 --- a/config.def.h +++ b/config.def.h @@ -7,6 +7,7 @@ static const char *barlayout = "tln|s"; static const int user_bh = 30; static const char *fonts[] = { "Noto Sans CJK JP:size=14" }; static const unsigned int gappx = 8; +static const int rmaster = 1; static const char *colors[][4] = { /* fg bg border float */ [SchemeNorm] = { "#bbbbbb", "#282c34", "#282c34", "#282c34" }, @@ -83,6 +84,7 @@ static const Key keys[] = { { MODKEY, XK_k, focusstack, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, + { MODKEY, XK_space, togglermaster, {0} }, //{ MODKEY, XK_h, setmfact, {.f = -0.05} }, //{ MODKEY, XK_l, setmfact, {.f = +0.05} }, { MODKEY|ShiftMask, XK_Return, zoom, {0} }, @@ -92,7 +94,7 @@ static const Key keys[] = { { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, - { MODKEY, XK_space, setlayout, {0} }, + //{ MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, /* functions for "all tags" TODO: map them somewhere, they seem useful */ |