some more config, want to turn waybar into simple battery bar
This commit is contained in:
parent
4621354963
commit
c912f2cf06
3 changed files with 40 additions and 19 deletions
30
modules/niri/swayosd.css.nix
Normal file
30
modules/niri/swayosd.css.nix
Normal 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};
|
||||
}
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue