From 23de0e8105883f252393f9f50339cb2f79d739e0 Mon Sep 17 00:00:00 2001 From: Michael Peters Date: Sun, 6 Mar 2022 16:32:16 -0600 Subject: [PATCH] make highlighted monitor tag opaque --- config.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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 */