From 58652c333d283895c9b841ade5fb06e5de69ba2d Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 2 May 2024 23:48:57 +0200 Subject: Change the default font --- config.def.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'config.def.h') 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"; -- cgit v1.2.3