nix/module/desktop/waybar/style/Workspace.nix

15 lines
360 B
Nix
Raw Normal View History

2024-05-02 04:47:21 +03:00
{ style, ... }: {
text = ''
#workspaces button {
padding: 0 5px;
color: #${style.color.fg.light};
background-color: transparent;
}
#workspaces button.focused {
background-color: rgba(${style.color.bg-r},${style.color.bg-g},${style.color.bg-b},${toString(style.opacity.desktop)});
border-top: 2px solid #${style.color.accent};
}
'';
}