This commit is contained in:
Tyler Perkins 2023-12-09 20:04:04 -05:00
parent 90cc115209
commit c61bbcdd83
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
1 changed files with 4 additions and 0 deletions

View File

@ -76,6 +76,8 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn()
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_orange, "-sf", col_gray4, NULL };
static const char *termcmd[] = { "st", NULL };
static const char *bkmark[] = { "bkmark", NULL };
static const char *passmenu[] = { "passmenu", NULL };
static const char *slock[] = { "lock_with_cam.sh", NULL };
//patch includes
#include "shiftview.c"
@ -84,6 +86,8 @@ static Key keys[] = {
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_Insert, spawn, {.v = bkmark } },
{ MODKEY, XK_o, spawn, {.v = passmenu } },
{ MODKEY, XK_g, spawn, {.v = slock } },
//{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },