wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 1824dd8d6726bcc844fdb530aa98960f6bcfc6fb
parent 6eb2f9a2501734e231980b38cd02c6eb67311457
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Sun, 29 Jan 2006 01:58:31 +0200

adding new colordefs to blitz


Diffstat:
cmd/wmiibar2.c | 2+-
liblitz/blitz.h | 2++
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/cmd/wmiibar2.c b/cmd/wmiibar2.c @@ -727,7 +727,7 @@ main(int argc, char *argv[]) /* default item settings */ new_item(); - cext_strlcpy(item[0]->color, "#000000 #ffffff #ffffff", sizeof(item[0]->color)); + cext_strlcpy(item[0]->color, BLITZ_SEL_COLOR, sizeof(item[0]->color)); font = strdup("fixed"); diff --git a/liblitz/blitz.h b/liblitz/blitz.h @@ -13,6 +13,8 @@ #define BLITZ_NORM_FG_COLOR "#bbbbbb" #define BLITZ_NORM_BG_COLOR "#222222" #define BLITZ_NORM_BORDER_COLOR "#000000" +#define BLITZ_SEL_COLOR "#eeeeee #506070 #708090" +#define BLITZ_NORM_COLOR "#222222 #000000 #000000" typedef enum { CENTER, WEST, NWEST, NORTH, NEAST, EAST,