aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/config.h b/config.h
index ec469be..d279ed3 100644
--- a/config.h
+++ b/config.h
@@ -1,12 +1,27 @@
/* See LICENSE file for copyright and license details. */
+#include "drw.h"
+
/*
* appearance
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "/usr/share/fonts/TTF/Sauce Code Pro Bold Nerd Font Complete.ttf";
-static int fontsize = 12;
+static FontPath fonts[] = {
+ {
+ "/usr/share/fonts/TTF/Sauce Code Pro Nerd Font Complete.ttf", /* Normal */
+ "/usr/share/fonts/TTF/Sauce Code Pro Italic Nerd Font Complete.ttf", /* Italic */
+ "/usr/share/fonts/TTF/Sauce Code Pro Bold Nerd Font Complete.ttf", /* Bold */
+ "/usr/share/fonts/TTF/Sauce Code Pro Bold Italic Nerd Font Complete.ttf", /* Bold-Italic */
+ },
+ {
+ "/usr/share/fonts/gnu-free/FreeMono.otf", /* Normal */
+ "/usr/share/fonts/gnu-free/FreeMonoOblique.otf", /* Italic */
+ "/usr/share/fonts/gnu-free/FreeMonoBold.otf", /* Bold */
+ "/usr/share/fonts/gnu-free/FreeMonoBoldOblique.otf" /* Bold-Italic */
+ },
+};
+static int fontsize = 32;
static int borderpx = 2;
/*