nix/home/file/waybar/style/Window.nix

20 lines
714 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
...
}: {
text = ''
window#waybar {
2024-11-23 07:44:51 +03:00
background-color: rgba(${config.module.style.color.bgR},${config.module.style.color.bgG},${config.module.style.color.bgB},${toString config.module.style.opacity.desktop});
border: ${toString config.module.style.window.border}px solid rgba(${config.module.style.color.borderR},${config.module.style.color.borderG},${config.module.style.color.borderB},${toString config.module.style.opacity.desktop});
2024-11-04 04:37:29 +03:00
}
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
}