Fix relative path searching

This commit is contained in:
Alex D. 2020-11-06 13:09:33 +01:00
parent d0a67ecb69
commit 16e15f0540
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 1 additions and 2 deletions

View File

@ -68,7 +68,6 @@ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, NULL };
static const char *termcmd[] = { "st", NULL };
static const char *lock[] = { "slock", NULL};
static const char *sfeed[] = { "sfeed-dmenu", NULL };
static const char *bookmarks[]= { "bookmarks-dmenu ~/Bookmarks", NULL };
static const char *passman[] = { "passman-dmenu", NULL };
static const char *ttvlist[] = { "twitch-list", NULL };
static const char *browser[] = { "xdg-open", "https://search.snopyta.org", NULL };
@ -93,7 +92,7 @@ static const Key keys[] = {
/* dmenu scripts */
{ MODKEY, XK_r, spawn, {.v = sfeed } },
{ MODKEY, XK_x, spawn, {.v = bookmarks } },
{ MODKEY, XK_x, spawn, SHCMD("bookmarks-dmenu ~/Bookmarks") },
{ MODKEY, XK_y, spawn, {.v = passman } },
{ MODKEY, XK_t, spawn, {.v = ttvlist } },