diff --git a/config.h b/config.h index a33203c..7e9ccc9 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 */ @@ -78,6 +78,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 } }, @@ -108,7 +109,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 */