diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 21 |
1 files changed, 16 insertions, 5 deletions
@@ -31,6 +31,18 @@ static const char *colors[][3] = { /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +static const char *tagsel[][2] = { + { "#ffffff", "#ff0000" }, + { "#ffffff", "#ff7f00" }, + { "#000000", "#ffff00" }, + { "#000000", "#00ff00" }, + { "#ffffff", "#0000ff" }, + { "#ffffff", "#4b0082" }, + { "#ffffff", "#9400d3" }, + { "#000000", "#ffffff" }, + { "#ffffff", "#000000" }, +}; + /* grid of tags */ #define DRAWCLASSICTAGS 1 << 0 @@ -59,12 +71,11 @@ static const Rule rules[] = { { "xterm-256color", NULL, NULL, 0, 0, 0, 0, -1 }, { "mpv", NULL, NULL, 0, 0, 0, 0, -1 }, { "Alacritty", NULL, NULL, 0, 0, 0, 0, -1 }, - { "KeePass2", NULL, NULL, 0, 0, 1, 0, -1 }, - { "org.remmina.Remmina", NULL, NULL, 1 << 5, 0, 0, 0, -1 }, - { "Vmware", NULL, NULL, 1 << 6, 0, 0, 0, -1 }, - { "rclone-browser", NULL, NULL, 1 << 7, 0, 0, 0, -1 }, + { "rclone-browser", NULL, NULL, 1 << 1, 0, 0, 0, 2 }, + { "org.remmina.Remmina", NULL, NULL, 1 << 2, 0, 0, 0, 2 }, + { "Vmware", NULL, NULL, 1 << 3, 0, 0, 0, 2 }, { "Microsoft Teams - Preview", NULL, NULL, 0, 0, 0, 0, 1 }, - { "thunderbird", NULL, NULL, 0, 0, 0, 0, 1 }, + { "thunderbird", NULL, NULL, 1 << 1, 0, 0, 0, 1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, -1 }, /* xev */ }; |