diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-25 22:00:29 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-25 22:00:29 -0500 |
| commit | 3885024fc2391cbfe97eebc310e76e876523cba3 (patch) | |
| tree | 7d142898a36e8509287bf2fc876767d77d7534af | |
| parent | 1eb83d40737d44c07ae5f61134f73d08e5150c9b (diff) | |
| download | dwm-3885024fc2391cbfe97eebc310e76e876523cba3.tar.gz | |
Updated font configuration
| -rw-r--r-- | config.def.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index caac1a9..86a0ee7 100644 --- a/config.def.h +++ b/config.def.h @@ -13,8 +13,8 @@ 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=16"; -static char dmenufont[] = "monospace:size=16"; +static char font[] = "FiraCode Nerd Font:style=medium:antialias=true:pixelsize=18"; +static char dmenufont[] = "FiraCode Nerd Font:style=medium:antialias=true:pixelsize=18"; static char statusfont[] = "FiraCode Nerd Font:style=medium:antialias=true:pixelsize=18"; static const char *fonts[] = { font, statusfont }; @@ -152,7 +152,8 @@ static const char *termcmd[] = { "st", NULL }; */ ResourcePref resources[] = { //{ "font", STRING, &font }, - { "dmenufont", STRING, &dmenufont }, + //{ "dmenufont", STRING, &dmenufont }, + { "normbgcolor", STRING, &normbgcolor }, { "normbordercolor", STRING, &normbordercolor }, { "normfgcolor", STRING, &normfgcolor }, |