fix default fonts in config.def.h - sent - simple plaintext presentation tool | |
git clone git://git.suckless.org/sent | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit f84e7a585e530e15437f7d87b721d0df3f98e24e | |
parent 345b48fe0333bbc85c52c5b4ab1ab94879b2fc1d | |
Author: Markus Teich <[email protected]> | |
Date: Sun, 1 Nov 2015 18:09:22 +0100 | |
fix default fonts in config.def.h | |
Diffstat: | |
M config.def.h | 3 ++- | |
1 file changed, 2 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/config.def.h b/config.def.h | |
@@ -2,7 +2,8 @@ | |
static char *fontfallbacks[] = { | |
"dejavu", | |
- "trollolo", | |
+ "roboto", | |
+ "ubuntu", | |
}; | |
#define NUMFONTSCALES 30 | |
#define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-… |