From 4781eafb065bc6b6b42313d7391f1bc9a605ed52 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 22 Aug 2024 21:40:51 -0400 Subject: [PATCH] dwm: Make bar opacity match rest of config 256 * 0.95 ~= 243. --- specializations/dwm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specializations/dwm.nix b/specializations/dwm.nix index 72e4fdf7..a9fc54c6 100644 --- a/specializations/dwm.nix +++ b/specializations/dwm.nix @@ -133,7 +133,7 @@ in [SchemeSel] = { col_gray4, col_gray1, col_gray3 }, }; - static const unsigned int baralpha = 0xd0; + static const unsigned int baralpha = 243; static const unsigned int alphas[][3] = { [SchemeNorm] = { OPAQUE, baralpha, baralpha },