From a489ba41cc49890761db23f81c8acef6eada2fc1 Mon Sep 17 00:00:00 2001 From: kolunmi Date: Tue, 21 Feb 2023 18:18:37 -0700 Subject: add ipc functionality, update README --- config.def.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'config.def.h') 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 -- cgit v1.2.3