From 0dba17e26db6ab3a2c414ac8f459d85957ce6f8a Mon Sep 17 00:00:00 2001 From: Tobias Eidelpes Date: Fri, 11 Sep 2020 22:42:21 +0200 Subject: [PATCH] Change font and customize master size --- config.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index 771e7a1..40816f7 100644 --- a/config.h +++ b/config.h @@ -11,8 +11,8 @@ static const int swallowfloating = 0; /* 1 means swallow floating wind static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */ 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", "JoyPixels:pixelsize=10:antialias=true:autohint=true" }; -static char dmenufont[] = "monospace:size=10"; +static const char *fonts[] = { "iosevka-extended:size=18", "JoyPixels:pixelsize=14:antialias=true:autohint=true" }; +static char dmenufont[] = "iosevka-extended:size=18"; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; static char normfgcolor[] = "#bbbbbb"; @@ -30,7 +30,7 @@ typedef struct { const void *cmd; } Sp; const char *spcmd1[] = {"st", "-n", "spterm", "-g", "120x34", NULL }; -const char *spcmd2[] = {"st", "-n", "spcalc", "-f", "monospace:size=16", "-g", "50x20", "-e", "bc", "-lq", NULL }; +const char *spcmd2[] = {"st", "-n", "spcalc", "-f", "monospace:size=18", "-g", "50x20", "-e", "bc", "-lq", NULL }; static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1}, @@ -54,7 +54,7 @@ static const Rule rules[] = { }; /* layout(s) */ -static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ +static const float mfact = 0.6; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ #define FORCE_VSPLIT 1 /* nrowgrid layout: force two clients to always split vertically */