From a603eb157f18608cb5ce6fd03c75eb8e7b8f51fb Mon Sep 17 00:00:00 2001 From: Mahesh Asolkar Date: Sun, 14 Mar 2021 22:34:27 -0700 Subject: [PATCH] Config update --- config.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 29028d4..47546f1 100644 --- a/config.h +++ b/config.h @@ -1,8 +1,8 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 0; /* border pixel of windows */ -static const unsigned int gappx = 1; /* gap pixel between windows */ +static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int gappx = 2; /* gap pixel 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 */ @@ -71,6 +71,7 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, { MODKEY|ShiftMask, XK_w, spawn, {.v = webcmd} }, { MODKEY|ShiftMask, XK_e, spawn, {.v = exitcmd} }, + { MODKEY|ShiftMask, XK_l, spawn, {.v = exitcmd} }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, @@ -101,7 +102,7 @@ static Key keys[] = { TAGKEYS( XK_7, 6) TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) - { MODKEY|ShiftMask, XK_q, quit, {0} }, + { MODKEY|ShiftMask|ControlMask, XK_q, quit, {0} }, }; /* button definitions */