aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarcel Screm <marcel@marcelscrem.com>2025-12-04 14:23:10 +0100
committerMarcel Screm <marcel@marcelscrem.com>2025-12-04 14:23:10 +0100
commitb224668ef032f013cb4dc3831074f8dd553149bb (patch)
treea4c5ed4112143c3f4ad9eab0820896f2d0c71e61 /config.def.h
parent7c3abae4e68b6a21f05cb04f3af31217259c0aa9 (diff)
applied patches
Diffstat (limited to 'config.def.h')
-rwxr-xr-x[-rw-r--r--]config.def.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 81c3fc0..87e61ce 100644..100755
--- a/config.def.h
+++ b/config.def.h
@@ -2,6 +2,7 @@
/* appearance */
static const unsigned int borderpx = 1; /* 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 = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
@@ -86,6 +87,9 @@ static const Key keys[] = {
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
+ { MODKEY, XK_minus, setgaps, {.i = -1 } },
+ { MODKEY, XK_equal, setgaps, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } },
TAGKEYS( XK_1, 0)
TAGKEYS( XK_2, 1)
TAGKEYS( XK_3, 2)