dwm

custom dwm build.
Log | Files | Refs | README | LICENSE

commit e14f1fcc5ccea0e7b249aac271d83dd98bb3312b
parent b274343545f127f823b83bae9d5a375675a84b23
Author: mpizzzle <m@michaelpercival.xyz>
Date:   Tue,  8 Sep 2020 22:05:26 +0100

added prompt for dmenu_run launcher

Diffstat:
Mconfig.def.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/config.def.h b/config.def.h @@ -12,6 +12,7 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 0; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=11" }; static const char dmenufont[] = "monospace:size=11"; +static const char dmenuprompt[] = "~>"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; @@ -73,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", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, "-p", dmenuprompt, NULL }; static const char *termcmd[] = { "st", NULL }; static Key keys[] = {