diff options
| author | kolunmi <kolunmi@tutanota.com> | 2023-02-21 18:18:37 -0700 |
|---|---|---|
| committer | kolunmi <kolunmi@tutanota.com> | 2023-02-21 18:18:37 -0700 |
| commit | a489ba41cc49890761db23f81c8acef6eada2fc1 (patch) | |
| tree | f934b399c428e4d4248e22db5a0c722708cb3d37 /config.def.h | |
| parent | 4ffc26c89fdda44e2dfb1dae3cf33c067a01fa8e (diff) | |
| download | dwlb-a489ba41cc49890761db23f81c8acef6eada2fc1.tar.gz | |
add ipc functionality, update README
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index b641618..1a002e8 100644 --- a/config.def.h +++ b/config.def.h @@ -1,3 +1,6 @@ +// use ipc functionality +static bool ipc = false; + // bar properties static bool hidden = false; static bool bottom = false; @@ -6,8 +9,8 @@ static bool hide_vacant = false; // font static char *fontstr = "monospace:size=10"; -// tag names -static char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +// tag names if ipc is disabled +static char *tags_noipc[] = { "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 |