diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/config.def.h b/config.def.h index fe6b4c4..32a951f 100644 --- a/config.def.h +++ b/config.def.h @@ -6,12 +6,11 @@ static const int topbar = 1; 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 gappih = 20; /* horiz inner gap between windows */ -static const unsigned int gappiv = 10; /* vert inner gap between windows */ -static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */ -static const unsigned int gappov = 30; /* vert outer gap between windows and screen edge */ +static const unsigned int gappih = 12; /* horiz inner gap between windows */ +static const unsigned int gappiv = 8; /* vert inner gap between windows */ +static const unsigned int gappoh = 12; /* horiz outer gap between windows and screen edge */ +static const unsigned int gappov = 8; /* vert outer gap between windows and screen edge */ static int smartgaps = 0; /* 1 means no outer gap when there is only one window */ -static const int rmaster = 1; static const char *colors[][4] = { /* fg bg border float */ [SchemeNorm] = { "#bbbbbb", "#282c34", "#282c34", "#282c34" }, @@ -103,7 +102,6 @@ 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} }, |