aboutsummaryrefslogtreecommitdiffstats
path: root/config.h
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2024-10-15 21:32:37 +0200
committerRomain Gonçalves <me@rgoncalves.se>2024-10-20 21:28:48 +0200
commit0efbb7dc4be93b16a6db754ce34f1c268074e6b2 (patch)
tree7dda513ffebc2ad58f0fdc2938e937da49fd8d25 /config.h
parenta556080b96b56cc0753e9b15969f73cce20cdb3a (diff)
downloaddwm-0efbb7dc4be93b16a6db754ce34f1c268074e6b2.tar.gz
patches: add statuscolors
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h b/config.h
index 7de0d4f..919a098 100644
--- a/config.h
+++ b/config.h
@@ -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 */
remember that computers suck.