From c49edb020e6931cda8c5a04d264cb20673290e2c Mon Sep 17 00:00:00 2001 From: Carlos Quijano Date: Sun, 15 Jul 2018 19:40:51 +0200 Subject: [PATCH] fix defaultbg value, solve sigfault --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index 0297a75..2794d6c 100644 --- a/config.h +++ b/config.h @@ -114,7 +114,7 @@ static const char *colorname[] = { * foreground, background, cursor, reverse cursor */ unsigned int defaultfg = 12; -unsigned int defaultbg = 256; +unsigned int defaultbg = 257; static unsigned int defaultcs = 14; static unsigned int defaultrcs = 15;