diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-29 14:03:24 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-29 14:03:24 +0100 |
commit | acccf4fa7c1fec9be9299db9d4b525ba93cacd35 (patch) | |
tree | 36d11f55e4dc4b8e7229d5edd69a28c538833dd9 | |
parent | a1d86fc43d831ce7b0fd3764e15852403fe927a4 (diff) | |
download | dwm-acccf4fa7c1fec9be9299db9d4b525ba93cacd35.tar.gz dwm-acccf4fa7c1fec9be9299db9d4b525ba93cacd35.tar.bz2 dwm-acccf4fa7c1fec9be9299db9d4b525ba93cacd35.zip |
+a new colour for my status bar
-rw-r--r-- | config.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -20,13 +20,14 @@ static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#005577"; static const char col_green[] = "#0e3f05"; +static const char col_green2[] = "#17fc02"; static const char col_red[] = "#910d01"; static const char *colors[][3] = { /* Scheme fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeSel] = { col_gray4, col_cyan, col_green }, - [SchemeStatus] = { col_gray3, col_gray1, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} - [SchemeTagsSel] = { col_gray4, col_green, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeStatus] = { col_green2, "#222222", "#000000" }, // Statusbar right {text,background,not used but cannot be empty} + [SchemeTagsSel] = { col_green2, col_black, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} [SchemeTagsNorm] = { col_gray3, col_gray1, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} [SchemeInfoSel] = { col_gray4, col_black, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty} [SchemeInfoNorm] = { col_gray3, col_gray1, "#000000" }, // infobar middle unselected {text,background,not used but cannot be empty} |