nix/module/desktop/waybar/style/Window.nix

9 lines
216 B
Nix
Raw Normal View History

2024-05-02 04:47:21 +03:00
{ 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}
}
'';
}