From e8759691b8fdac7f964626c357dd6512a698ea2f Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 29 Jun 2013 23:46:53 +0200 Subject: [PATCH] Bugfix: call i3-nagbar correctly for configfiles without the font directive (Thanks xeen) fixes #1030 --- src/config_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config_parser.c b/src/config_parser.c index 1cdc7acb..a3730233 100644 --- a/src/config_parser.c +++ b/src/config_parser.c @@ -1060,7 +1060,7 @@ void parse_file(const char *f) { char *argv[] = { NULL, /* will be replaced by the executable path */ "-f", - config.font.pattern, + (config.font.pattern ? config.font.pattern : "fixed"), "-t", (context->has_errors ? "error" : "warning"), "-m",