nix/home/config/waybar/style/Window.nix

20 lines
720 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
...
}: {
text = ''
window#waybar {
background-color: rgba(${config.module.style.color.bg-r},${config.module.style.color.bg-g},${config.module.style.color.bg-b},${toString config.module.style.opacity.desktop});
border: ${toString config.module.style.window.border}px solid rgba(${config.module.style.color.border-r},${config.module.style.color.border-g},${config.module.style.color.border-b},${toString config.module.style.opacity.desktop});
}
2024-05-07 03:22:01 +03:00
2024-11-04 04:37:29 +03:00
.modules-left > widget:first-child > #workspaces {
margin-left: ${toString config.module.style.window.border}px;
}
2024-05-07 03:22:01 +03:00
2024-11-04 04:37:29 +03:00
.modules-right > widget:last-child > #workspaces {
margin-right: ${toString config.module.style.window.border}px;
}
'';
2024-05-02 04:47:21 +03:00
}