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

23 lines
661 B
Nix
Raw Normal View History

2024-05-02 04:47:21 +03:00
{ style, ... }: {
text = ''
window#waybar {
2024-05-24 03:43:20 +03:00
background: rgba(0, 0, 0, 0);
}
.modules-left,
.modules-right,
.modules-center {
2024-05-02 04:47:21 +03:00
background-color: rgba(${style.color.bg-r},${style.color.bg-g},${style.color.bg-b},${toString(style.opacity.desktop)});
2024-05-07 03:22:01 +03:00
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;
2024-05-02 04:47:21 +03:00
}
'';
}