From 82a89c4ab4d1485b9ff352fdc11238d19b72f564 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Sat, 31 Oct 2020 21:52:42 -0400 Subject: Switch font. Remove duplication --- config.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index 9e7e60c..c7d2469 100644 --- a/config.h +++ b/config.h @@ -1,12 +1,15 @@ /* See LICENSE file for copyright and license details. */ +#define FONT_SCIENTIFICA "scientifica:pixelsize=10:antialias=false:autohint=false" +#define FONT_CURIE "curieMedium:pixelsize=10:antialias=false:autohint=false" + /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "scientifica:pixelsize=10:antialias=false:autohint=false" }; -static const char dmenufont[] = "scientifica:pixelsize=10:antialias=false:autohint=false"; +static const char *fonts[] = { FONT_CURIE }; +static const char dmenufont[] = FONT_CURIE; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; -- cgit v1.2.3