From 98add29e0857b49a36a9f08f781fea8e9b77c84d Mon Sep 17 00:00:00 2001
From: Luca Bilke <luca@bil.ke>
Date: Mon, 29 Jan 2024 18:20:29 +0100
Subject: [PATCH] new settings (boxdraw_braille = 1)

---
 config.h | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/config.h b/config.h
index d0ca425..b0fce3e 100644
--- a/config.h
+++ b/config.h
@@ -83,7 +83,7 @@ const int boxdraw = 1;
 const int boxdraw_bold = 0;
 
 /* braille (U28XX):  1: render as adjacent "pixels",  0: use font */
-const int boxdraw_braille = 0;
+const int boxdraw_braille = 1;
 
 /*
  * bell volume. It must be a value between -100 and 100. Use 0 for disabling
@@ -136,12 +136,14 @@ static const char *colorname[] = {
 	[255] = 0,
 
     // indexes beyond 255 are used for internal colors
-	"#c0caf5", /* default cursor colour */
-	"#1a1b26", /* default inverted cursor colour */
-	"#c0caf5", /* default foreground colour */
-	"#1a1b26", /* default background colour */
-    "#c0caf5", /* default selection foreground colour */
-    "#33467C", /* default selection background colour */
+	"#c0caf5", /* cursor colour */
+	"#1a1b26", /* inverted cursor colour */
+	"#c0caf5", /* default   foreground colour */
+	"#1a1b26", /* default   background colour */
+	"#abb7ed", /* unfocused foreground colour */
+	"#14141a", /* unfocused background colour */
+    "#c0caf5", /* selection foreground colour */
+    "#33467C", /* selection background colour */
 };
 
 unsigned int defaultcs = 256;