diff options
| author | kolunmi <kolunmi@tutanota.com> | 2023-02-14 16:29:56 -0700 |
|---|---|---|
| committer | kolunmi <kolunmi@tutanota.com> | 2023-02-14 16:29:56 -0700 |
| commit | 4a7a99fc5c5e128d83447efa1d4d5924b3c3d02f (patch) | |
| tree | 46d18a51150aad8e3608f112d15df14699fcaf9e /config.def.h | |
| parent | 5c5948aaf9d665989713a31d6ab6015d10e2338d (diff) | |
| download | dwlb-4a7a99fc5c5e128d83447efa1d4d5924b3c3d02f.tar.gz | |
add default font, remove requirement for TAGSLEN with LENGTH macro
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index d554597..683adf0 100644 --- a/config.def.h +++ b/config.def.h @@ -3,10 +3,11 @@ static bool hidden = false; static bool bottom = false; static bool hide_vacant = false; -// define the number of tags and the tag names, if the number of tags is -// greater than TAGSLEN they will not be displayed, each tag also needs a name -#define TAGSLEN 9 -static char *tags[TAGSLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +// font +static char *fontstr = "monospace:size=10"; + +// tag names +static char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; // set 16-bit colors for bar // 8-bit color can be converted to 16-bit color by simply duplicating values e.g |