From 775393f82492f3eea21ceea5958fe686439f6fb2 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sat, 5 Jun 2021 13:30:23 +0200 Subject: [PATCH 1/3] dmenu bug fix --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index f5231c9..a94f490 100644 --- a/src/config.h +++ b/src/config.h @@ -74,7 +74,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", bg_color, "-nf", text_color, "-sb", col_cyan, "-sf", col_gray4, "-p", ">", "-i", "-l", "4", NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, NULL }; static const char *termcmd[] = { "st", NULL }; static const char *betterlockscreencmd[] = { "betterlockscreen", "--lock", "blur", NULL }; static const char *spectaclecmd[] = { "spectacle", "-r", "-c", "-b", NULL }; From 997db4cedafe56d617459a15cb815f9b49d9a9b9 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sat, 5 Jun 2021 13:34:30 +0200 Subject: [PATCH 2/3] Minor tweak --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index a94f490..83ebe11 100644 --- a/src/config.h +++ b/src/config.h @@ -92,7 +92,7 @@ static Key keys[] = { { MODKEY, XK_h, setmfact, {.f = -0.05} }, { MODKEY, XK_l, setmfact, {.f = +0.05} }, { MODKEY|ShiftMask, XK_Return, zoom, {0} }, - { MODKEY, XK_Tab, view, {0} }, + { MODKEY, XK_Tab, view, {0} }, { MODKEY|ShiftMask, XK_q, killclient, {0} }, { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, From 9155e4daa1a90eaf9f50f4b612227ebbb5af50c1 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sat, 5 Jun 2021 14:06:28 +0200 Subject: [PATCH 3/3] Minor tweaks --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index 83ebe11..d3ee682 100644 --- a/src/config.h +++ b/src/config.h @@ -74,7 +74,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-p", "Run >", "-z", "512", NULL }; static const char *termcmd[] = { "st", NULL }; static const char *betterlockscreencmd[] = { "betterlockscreen", "--lock", "blur", NULL }; static const char *spectaclecmd[] = { "spectacle", "-r", "-c", "-b", NULL };