diff options
| author | kolunmi <kolunmi@tutanota.com> | 2023-03-14 12:07:21 -0700 |
|---|---|---|
| committer | kolunmi <kolunmi@tutanota.com> | 2023-03-14 12:07:21 -0700 |
| commit | c91e728fd6e50824b1216d730d2c26a44a5b7954 (patch) | |
| tree | 2fa760b63151822e94acd528dc35bcded02b450a /config.def.h | |
| parent | fbb2b67ba27ff37a3fa8e5565c2dfb400e632db5 (diff) | |
| download | dwlb-c91e728fd6e50824b1216d730d2c26a44a5b7954.tar.gz | |
refactoring, remove uthash dependency, add -not-title option
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 1a002e8..79fbc63 100644 --- a/config.def.h +++ b/config.def.h @@ -7,7 +7,7 @@ static bool bottom = false; static bool hide_vacant = false; // font -static char *fontstr = "monospace:size=10"; +static char *fontstr = "monospace:size=16"; // tag names if ipc is disabled static char *tags_noipc[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; @@ -27,3 +27,6 @@ static uint32_t vertical_padding = 1; // allow in-line color commands in status text static bool status_commands = true; + +// do not display current window title +static bool no_title = false; |