From a6b7bef9186c4248ea3c5708357af1e0e50e6466 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Tue, 21 Apr 2020 13:45:36 +0200 Subject: [PATCH] Make statusbar opaque --- home/desktop/sway.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/home/desktop/sway.nix b/home/desktop/sway.nix index a13e14ff..6983a8ff 100644 --- a/home/desktop/sway.nix +++ b/home/desktop/sway.nix @@ -162,12 +162,12 @@ in { mode hide colors { - statusline #ffffff - background #00000000 + statusline ${colors.foreground} + background ${colors.background} ${ lib.concatStringsSep "\n" (lib.mapAttrsToList (category: { background, border, text }: '' - ${category} ${background}cc ${border} ${text} + ${category} ${background} ${border} ${text} '') barColors) } } @@ -188,12 +188,12 @@ in { mode invisible colors { - statusline #ffffff - background #00000000 + statusline ${colors.foreground} + background ${colors.background} ${ lib.concatStringsSep "\n" (lib.mapAttrsToList (category: { background, border, text }: '' - ${category} ${background}cc ${border} ${text} + ${category} ${background} ${border} ${text} '') barColors) } }