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

17 lines
563 B
Nix
Raw Normal View History

2024-05-02 04:47:21 +03:00
{ style, ... }: {
text = ''
window#waybar {
2024-06-22 23:34:03 +03:00
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});
2024-05-07 03:22:01 +03:00
}
.modules-left > widget:first-child > #workspaces {
2024-06-22 23:34:03 +03:00
margin-left: ${toString style.window.border}px;
2024-05-07 03:22:01 +03:00
}
.modules-right > widget:last-child > #workspaces {
2024-06-22 23:34:03 +03:00
margin-right: ${toString style.window.border}px;
2024-05-02 04:47:21 +03:00
}
'';
}