diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 400dc39..5954e60 100644 --- a/config.def.h +++ b/config.def.h @@ -1,12 +1,14 @@ /* See LICENSE file for copyright and license details. */ +#define DWM_DEFAULT_FONT "Ubuntu Mono Nerd Font:size=14:style=Bold" + /* 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[] = { "monospace:size=10" }; -static const char dmenufont[] = "monospace:size=10"; +static const char *fonts[] = { DWM_DEFAULT_FONT }; /* "monospace:size=10" */ +static const char dmenufont[] = DWM_DEFAULT_FONT; /* "monospace:size=10" */ static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; |