Evie Litherland-Smith
05d19c1813
Split system-level sway and plasma config into separate files, move sway-specific home-level config to sway file. Only truly common desktop components are kept in common spaces. This allows much easier switching between using KDE Plasma and Sway.
27 lines
620 B
Nix
27 lines
620 B
Nix
{
|
|
config,
|
|
fonts,
|
|
accentColourName,
|
|
...
|
|
}: {
|
|
services.mako = let
|
|
sc = config.scheme.withHashtag;
|
|
in {
|
|
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 = "${sc.base05}ff";
|
|
progressColor = "over ${sc.red}ff";
|
|
backgroundColor = "${sc.base00}cc";
|
|
borderColor = "${sc.${accentColourName}}ff";
|
|
borderRadius = 5;
|
|
borderSize = 1;
|
|
defaultTimeout = 0;
|
|
};
|
|
}
|