From 1a9a4ce585e135d36a944df86caca7059623789b Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Sat, 12 Sep 2020 21:36:24 +0200 Subject: [PATCH] fixed font size being too big --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index bacf3b4..e026b3d 100644 --- a/config.h +++ b/config.h @@ -6,7 +6,7 @@ static const unsigned int gappx = 18; /* gaps between windows */ static const unsigned int snap = 16; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "monospace:size=10" }; +static const char *fonts[] = { "monospace:size=9" }; /* Colors _0 means lighter version */ static const char col_bg[] = "#1d2021"; static const char col_bg_0[] = "#282828";