|
@@ -3,11 +3,11 @@
|
|
|
/* appearance */
|
|
|
static const unsigned int borderpx = 1; /* border pixel of windows */
|
|
|
static const unsigned int snap = 32; /* snap pixel */
|
|
|
-static const unsigned int gappih = 10; /* 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 = 10; /* vert outer gap between windows and screen edge */
|
|
|
-static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
|
|
|
+static const unsigned int gappih = 0; /* horiz inner gap between windows */
|
|
|
+static const unsigned int gappiv = 0; /* vert inner gap between windows */
|
|
|
+static const unsigned int gappoh = 0; /* horiz outer gap between windows and screen edge */
|
|
|
+static const unsigned int gappov = 0; /* vert outer gap between windows and screen edge */
|
|
|
+static const int smartgaps = 1; /* 1 means no outer gap when there is only one window */
|
|
|
static const int showbar = 1; /* 0 means no bar */
|
|
|
static const int topbar = 1; /* 0 means bottom bar */
|
|
|
static const char *fonts[] = { "Hack:size=10" };
|
|
@@ -82,8 +82,8 @@ static Key keys[] = {
|
|
|
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
|
|
|
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
|
|
|
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
|
|
|
- { MODKEY, XK_g, incrgaps, {.i = +1 } },
|
|
|
- { MODKEY|ShiftMask, XK_g, incrgaps, {.i = -1 } },
|
|
|
+ { MODKEY, XK_g, incrgaps, {.i = +5 } },
|
|
|
+ { MODKEY|ShiftMask, XK_g, incrgaps, {.i = -5 } },
|
|
|
{ MODKEY, XK_Return, zoom, {0} },
|
|
|
{ MODKEY, XK_Tab, view, {0} },
|
|
|
{ MODKEY, XK_q, killclient, {0} },
|