commit 672c9344f6095091ffc2832584ba651ed8927bcc
parent 24389b1d8e33b5375d9477b42a286ac3ce2dbe1d
Author: Mark Feller <mark@getsunday.com>
Date: Mon, 22 Feb 2021 08:31:17 -0700
reduce gap and border width
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -1,8 +1,8 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-static const unsigned int borderpx = 3; /* border pixel of windows */
-static const unsigned int gappx = 40; /* gaps between windows */
+static const unsigned int borderpx = 2; /* border pixel of windows */
+static const unsigned int gappx = 5; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 0; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
@@ -64,7 +64,6 @@ static const char *dmenucmd[] = { "dwm_run", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
-
{ MODKEY|ShiftMask, XK_Return, zoom, {0} },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },