9 lines
216 B
Nix
9 lines
216 B
Nix
{ style, ... }: {
|
|
text = ''
|
|
window#waybar {
|
|
background-color: rgba(${style.color.bg-r},${style.color.bg-g},${style.color.bg-b},${toString(style.opacity.desktop)});
|
|
color: #${style.color.fg.light}
|
|
}
|
|
'';
|
|
}
|