summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-07-15 14:03:29 -0400
committerGitHub <noreply@github.com>2018-07-15 14:03:29 -0400
commit02ebb37e50ce4d0116806585d612b76c318e33df (patch)
tree00a4c2e06aa7a314ea647963e22f1859394f5982
parent43af5f7790c8b4686a8f32d90a9366ff426b65be (diff)
parentc49edb020e6931cda8c5a04d264cb20673290e2c (diff)
Merge pull request #5 from cquijano/patched
fix defaultbg value, solve sigfault
-rw-r--r--config.h2
1 files changed, 1 insertions, 1 deletions
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;