some more config, want to turn waybar into simple battery bar

This commit is contained in:
twoneis 2024-08-23 14:42:25 +02:00
parent 4621354963
commit c912f2cf06
3 changed files with 40 additions and 19 deletions

View file

@ -0,0 +1,30 @@
{ config, ... }: let
background = config.theme.overlay;
muted = config.theme.muted;
font = config.theme.text;
in {
style = ''
window#osd {
border-radius: 8px;
border: none;
background: ${background};
}
image,
label {
color: ${font};
}
progressbar {
background: ${muted};
}
progress:disabled {
background: ${font};
}
progress {
background: ${font};
}
'';
}