summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorLignum Crucis2026-04-09 23:38:33 -0300
committerLignum Crucis2026-04-09 23:38:33 -0300
commita56335b967a13ef96bab1c8f30e9e4e87d22d0e4 (patch)
treee8f9275d936e9fe53bda83d46c7438e1201a5b97 /config.h
parent88828ed10a096613eae35c099a2d527cc9d87013 (diff)
patch: fulltag-indicator
need configuration
Diffstat (limited to 'config.h')
-rw-r--r--config.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/config.h b/config.h
index 8e995ed..8e08d70 100644
--- a/config.h
+++ b/config.h
@@ -23,6 +23,20 @@ static const char *colors[][3] = {
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
};
+/* full tag indicator variables */
+static const int fti_top = 1; /* 0 means bottom indicator */
+static const int fti_border = 1; /* 0 means no border */
+static const unsigned int fti_height = 4; /* indicator height (as px) */
+static const unsigned int fti_ptop = 0; /* top padding */
+static const unsigned int fti_pbot = 0; /* bottom padding */
+static const unsigned int fti_plef = 0; /* left padding */
+static const unsigned int fti_prig = 0; /* right padding */
+static const char fti_color_nor[] = "#222222"; /* indicator color (not selected tag) */
+static const char fti_color_sel[] = "#eeeeee"; /* indicator color (selected tag) */
+static const char fti_color_nor_inv[] = "#bbbbbb"; /* inverse indicator color (not selected tag) */
+static const char fti_color_sel_inv[] = "#005577"; /* inverse indicator color (selected tag) */
+
+
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };