Remove bookmarks and use local path for pass manager

This commit is contained in:
Alex D. 2021-08-20 02:06:38 +00:00
parent aa972b2b9b
commit 2de00537fb
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 1 additions and 3 deletions

View File

@ -67,7 +67,6 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn()
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, NULL };
static const char *termcmd[] = { "st", NULL };
static const char *lock[] = { "slock", NULL};
static const char *passman[] = { "passman-dmenu", NULL };
static const Key keys[] = {
/* modifier key function argument */
@ -86,8 +85,7 @@ static const Key keys[] = {
{ MODKEY, XK_f, spawn, STCMD("nnn") },
/* dmenu scripts */
{ MODKEY, XK_x, spawn, SHCMD("bookmarks-dmenu ~/Bookmarks") },
{ MODKEY, XK_y, spawn, {.v = passman } },
{ MODKEY, XK_y, spawn, SHCMD("~/Projects/misc-scripts/passman-dmenu.zsh") },
/* mpv controls */
{ 0, XF86XK_AudioPlay, spawn, MPVSOCK("keypress space") },