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
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)
}
}