From: Michael Stapelberg Date: Mon, 7 Nov 2011 19:52:21 +0000 (+0000) Subject: i3bar: change default color for active workspace buttons to make them visible X-Git-Tag: 4.1~31 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ddf261432a52cae67f6d1a6cb7b6ab00a4e37d20;p=i3%2Fi3 i3bar: change default color for active workspace buttons to make them visible Previously, you could not figure out which workspace is displayed on a screen which is not focused. --- diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index 93b7b0a1..d1fcac7c 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -270,8 +270,8 @@ void init_colors(const struct xcb_color_strings_t *new_colors) { } while (0) PARSE_COLOR(bar_fg, "#FFFFFF"); PARSE_COLOR(bar_bg, "#000000"); - PARSE_COLOR(active_ws_fg, "#888888"); - PARSE_COLOR(active_ws_bg, "#222222"); + PARSE_COLOR(active_ws_fg, "#FFFFFF"); + PARSE_COLOR(active_ws_bg, "#333333"); PARSE_COLOR(inactive_ws_fg, "#888888"); PARSE_COLOR(inactive_ws_bg, "#222222"); PARSE_COLOR(urgent_ws_fg, "#FFFFFF");