diff options
| author | Lignum Crucis | 2026-04-09 23:38:33 -0300 |
|---|---|---|
| committer | Lignum Crucis | 2026-04-09 23:38:33 -0300 |
| commit | a56335b967a13ef96bab1c8f30e9e4e87d22d0e4 (patch) | |
| tree | e8f9275d936e9fe53bda83d46c7438e1201a5b97 /config.h | |
| parent | 88828ed10a096613eae35c099a2d527cc9d87013 (diff) | |
patch: fulltag-indicator
need configuration
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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" }; |
