]> git.sur5r.net Git - i3/i3/commitdiff
i3bar: change default color for active workspace buttons to make them visible
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 7 Nov 2011 19:52:21 +0000 (19:52 +0000)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 7 Nov 2011 19:52:21 +0000 (19:52 +0000)
Previously, you could not figure out which workspace is displayed on a screen
which is not focused.

i3bar/src/xcb.c

index 93b7b0a1b9008ee5f46ac8b6cfd5d2542e7b42a9..d1fcac7c60e2e7550c398b9e5bbd34ffc1e29c4c 100644 (file)
@@ -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");