dwm

my build of dwm
git clone git://git.ckyln.com/~cem/dwm.git
Log | Files | Refs | README | LICENSE

commit c9e17973a7c6612e2d94a26d8a2888d3df5357f5
parent 0a96210581a5877d7c62e138e18a9fdb003e9b2e
Author: Cem Keylan <cem@ckyln.com>
Date:   Tue, 22 Oct 2019 20:13:07 +0300

add null after command string

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

diff --git a/config.h b/config.h @@ -81,7 +81,7 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbordercolor, "-sf", selfgcolor, NULL }; static const char *termcmd[] = { "st", NULL }; -static const char *docs[] = { "readthedocs" }; +static const char *docs[] = { "readthedocs", NULL }; static const char *browcmd[] = { "qutebrowser", NULL }; static const char *surfcmd[] = { "tabbed", "-c", "surf", "-e", NULL }; static const char *rofiapp[] = { "rofi", "-show", "drun", NULL };