From: Michael Stapelberg Date: Sun, 23 Oct 2011 16:48:44 +0000 (+0100) Subject: Fix colors in i3bar (Thanks julien) X-Git-Tag: 4.1~66 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ada4857ad2fe09e8018601d1da7595f060f50a51;p=i3%2Fi3 Fix colors in i3bar (Thanks julien) i3bar previously used get_colorpixel on strings without the leading # (ff0000 instead of #ff0000). Since it uses libi3’s get_colorpixel now we needed to update a few places. --- diff --git a/docs/ipc b/docs/ipc index db1ef681..fc46590e 100644 --- a/docs/ipc +++ b/docs/ipc @@ -475,7 +475,7 @@ verbose (boolean):: Should the bar enable verbose output for debugging? Defaults to false. colors (map):: Contains key/value pairs of colors. Each value is a color code in hex, - formatted rrggbb (like used in HTML). + formatted #rrggbb (like in HTML). The following colors can be configured at the moment: @@ -516,10 +516,10 @@ urgent_workspace_text/urgent_workspace_bar:: "workspace_buttons": true, "verbose": false, "colors": { - "background": "c0c0c0", - "statusline": "00ff00", - "focused_workspace_text": "ffffff", - "focused_workspace_bg": "000000" + "background": "#c0c0c0", + "statusline": "#00ff00", + "focused_workspace_text": "#ffffff", + "focused_workspace_bg": "#000000" } } -------------- diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index 076fe791..40d19a3e 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -294,16 +294,16 @@ void init_colors(const struct xcb_color_strings_t *new_colors) { do { \ colors.name = get_colorpixel(new_colors->name ? new_colors->name : def); \ } 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(inactive_ws_fg, "888888"); - PARSE_COLOR(inactive_ws_bg, "222222"); - PARSE_COLOR(urgent_ws_fg, "FFFFFF"); - PARSE_COLOR(urgent_ws_bg, "900000"); - PARSE_COLOR(focus_ws_fg, "FFFFFF"); - PARSE_COLOR(focus_ws_bg, "285577"); + PARSE_COLOR(bar_fg, "#FFFFFF"); + PARSE_COLOR(bar_bg, "#000000"); + PARSE_COLOR(active_ws_fg, "#888888"); + PARSE_COLOR(active_ws_bg, "#222222"); + PARSE_COLOR(inactive_ws_fg, "#888888"); + PARSE_COLOR(inactive_ws_bg, "#222222"); + PARSE_COLOR(urgent_ws_fg, "#FFFFFF"); + PARSE_COLOR(urgent_ws_bg, "#900000"); + PARSE_COLOR(focus_ws_fg, "#FFFFFF"); + PARSE_COLOR(focus_ws_bg, "#285577"); #undef PARSE_COLOR } diff --git a/src/cfgparse.l b/src/cfgparse.l index cd936ac5..8c853dbf 100644 --- a/src/cfgparse.l +++ b/src/cfgparse.l @@ -112,7 +112,7 @@ EOL (\r?\n) active_workspace { BAR_DOUBLE_COLOR; return TOK_BAR_COLOR_ACTIVE_WORKSPACE; } inactive_workspace { BAR_DOUBLE_COLOR; return TOK_BAR_COLOR_INACTIVE_WORKSPACE; } urgent_workspace { BAR_DOUBLE_COLOR; return TOK_BAR_COLOR_URGENT_WORKSPACE; } -#[0-9a-fA-F]+ { yy_pop_state(); yylval.string = sstrdup(yytext+1); return HEXCOLOR; } +#[0-9a-fA-F]+ { yy_pop_state(); yylval.string = sstrdup(yytext); return HEXCOLOR; } [a-zA-Z]+ { yylval.string = sstrdup(yytext); return WORD; }