This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/programs/desktop/mako/default.nix
Evie Litherland-Smith 98b04a645a Switch swaync for mako
Move waybar to bottom of screen, move workspaces module to the left
and mpris to the centre
2024-05-28 07:47:00 +01:00

25 lines
625 B
Nix

{
config,
fonts,
accentColour ? "base07",
...
}: {
services.mako = with config.scheme.withHashtag; {
enable = true;
anchor = "top-right";
font = "${fonts.monospace.name} ${toString fonts.sizes.popups}";
layer = "top";
markup = true;
maxVisible = 10;
icons = true;
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
textColor = "${base05}FF";
progressColor = "over ${red}FF";
backgroundColor = "${base00}50";
borderColor = "${config.scheme.withHashtag.${accentColour}}FF";
borderRadius = 10;
borderSize = 1;
defaultTimeout = 0;
};
}