nix/module/desktop/waybar/style/Window.nix
2024-05-24 04:43:01 +03:00

23 lines
661 B
Nix

{ style, ... }: {
text = ''
window#waybar {
background: rgba(0, 0, 0, 0);
}
.modules-left,
.modules-right,
.modules-center {
background-color: rgba(${style.color.bg-r},${style.color.bg-g},${style.color.bg-b},${toString(style.opacity.desktop)});
border: ${toString(style.window.border)}px solid rgba(${style.color.border-r},${style.color.border-g},${style.color.border-b},${toString(style.opacity.desktop)});
}
.modules-left > widget:first-child > #workspaces {
margin-left: ${toString(style.window.border)}px;
}
.modules-right > widget:last-child > #workspaces {
margin-right: ${toString(style.window.border)}px;
}
'';
}