diff options
author | 2024-05-02 23:48:57 +0200 | |
---|---|---|
committer | 2024-05-02 23:48:57 +0200 | |
commit | 58652c333d283895c9b841ade5fb06e5de69ba2d (patch) | |
tree | 9c57d05e29a2801a1a1b1dc1bcb491dd04526964 | |
parent | 8faec3867d8684fbde5cbe429c9adc8e0935af1b (diff) | |
download | dwm-58652c333d283895c9b841ade5fb06e5de69ba2d.tar.gz dwm-58652c333d283895c9b841ade5fb06e5de69ba2d.zip |
Change the default font
-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"; |