1
0
Fork 0

Make statusbar opaque

This commit is contained in:
Malte Brandy 2020-04-21 13:45:36 +02:00
parent e1ff7ebbb0
commit a6b7bef918
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -162,12 +162,12 @@ in {
mode hide mode hide
colors { colors {
statusline #ffffff statusline ${colors.foreground}
background #00000000 background ${colors.background}
${ ${
lib.concatStringsSep "\n" (lib.mapAttrsToList (category: lib.concatStringsSep "\n" (lib.mapAttrsToList (category:
{ background, border, text }: '' { background, border, text }: ''
${category} ${background}cc ${border} ${text} ${category} ${background} ${border} ${text}
'') barColors) '') barColors)
} }
} }
@ -188,12 +188,12 @@ in {
mode invisible mode invisible
colors { colors {
statusline #ffffff statusline ${colors.foreground}
background #00000000 background ${colors.background}
${ ${
lib.concatStringsSep "\n" (lib.mapAttrsToList (category: lib.concatStringsSep "\n" (lib.mapAttrsToList (category:
{ background, border, text }: '' { background, border, text }: ''
${category} ${background}cc ${border} ${text} ${category} ${background} ${border} ${text}
'') barColors) '') barColors)
} }
} }