diff --git a/config.h b/config.h index 4fae7fe..2bdc588 100644 --- a/config.h +++ b/config.h @@ -24,17 +24,18 @@ static const char col_urgborder[] = "#ff0000"; static const unsigned int baralpha = 0xd0; static const unsigned int borderalpha = OPAQUE; static const char *colors[][3] = { - /* fg bg border */ + /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeSelMon] = { col_gray4, col_green, col_cyan }, // Colorscheme for the bar on the selected monitor [SchemeSel] = { col_gray4, col_cyan, col_cyan }, [SchemeUrg] = { col_gray4, col_cyan, col_urgborder }, }; static const unsigned int alphas[][3] = { - /* fg bg border */ - [SchemeNorm] = { OPAQUE, baralpha, borderalpha }, - [SchemeSel] = { OPAQUE, baralpha, borderalpha }, - [SchemeUrg] = { OPAQUE, baralpha, borderalpha }, + /* fg bg border */ + [SchemeNorm] = { OPAQUE, baralpha, borderalpha }, + [SchemeSelMon] = { OPAQUE, baralpha, borderalpha }, + [SchemeSel] = { OPAQUE, baralpha, borderalpha }, + [SchemeUrg] = { OPAQUE, baralpha, borderalpha }, }; /* staticstatus */