diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-19 22:13:32 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-19 22:13:32 -0500 |
| commit | 60036de81ef8279033682c6fc117627e96d7b574 (patch) | |
| tree | a274332f5457a654e2e991b2bd51ec0e84e8a963 /config.def.h | |
| parent | a92bca0d79269f7597720014973fd570b1253b91 (diff) | |
| download | dwm-60036de81ef8279033682c6fc117627e96d7b574.tar.gz | |
Applied statusbar font patch
https://dwm.suckless.org/patches/statusbarfont/
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 9598465..1967e52 100644 --- a/config.def.h +++ b/config.def.h @@ -13,9 +13,13 @@ static unsigned int borderpx = 2; /* border pixel of windows */ static unsigned int snap = 32; /* snap pixel */ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ -static char font[] = "monospace:size=10"; -static char dmenufont[] = "monospace:size=10"; -static const char *fonts[] = { font }; +static char font[] = "monospace:size=16"; +static char dmenufont[] = "monospace:size=16"; +static char statusfont[] = "FiraCode Nerd Font:style=medium:antialias=true:pixelsize=18"; + +static const char *fonts[] = { font, statusfont }; +static const int statusfontindex = 1; + static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; static char normfgcolor[] = "#bbbbbb"; |