Config update

This commit is contained in:
Mahesh Asolkar 2021-03-14 22:34:27 -07:00
parent 421f1b9d46
commit a603eb157f

View File

@ -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 */