diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-10-15 21:32:37 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2025-02-28 13:18:48 +0100 |
commit | e58c6606e34c03e0cfc8b48c7581202b4b09ebc9 (patch) | |
tree | 80753c848ccbb2d36d0ebd65999c8d42277b4f06 /config.h | |
parent | ffebd1a028984598b1589ae698437990317937de (diff) | |
download | dwm-e58c6606e34c03e0cfc8b48c7581202b4b09ebc9.tar.gz |
patches: add statuscolors
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,10 +13,14 @@ static const char dmenufont[] = "Terminus:size=9"; static const char col_white[] = "#ffffff"; static const char col_black[] = "#000000"; static const char col_gray[] = "#666666"; +static const char col_red[] = "#ff0000"; +static const char col_yellow[] = "#ffff00"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_white, col_black, col_gray }, [SchemeSel] = { col_black, col_white, col_white }, + [SchemeWarn] = { col_black, col_yellow, col_yellow }, + [SchemeUrgent]= { col_white, col_red, col_red }, }; /* tagging */ |