2024-07-30 15:06:34 +01:00
|
|
|
{ config, accentColourName, ... }:
|
2024-07-07 08:47:50 +01:00
|
|
|
{
|
|
|
|
services.avizo = {
|
|
|
|
enable = true;
|
2024-07-30 15:06:34 +01:00
|
|
|
settings.default =
|
|
|
|
let
|
|
|
|
sc = config.scheme;
|
|
|
|
rgba =
|
|
|
|
colourName: "${sc."${colourName}-rgb-r"}, ${sc."${colourName}-rgb-g"}, ${sc."${colourName}-rgb-b"}";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
background = "rgba(${rgba "base00"}, 0.9)";
|
|
|
|
bar-bg-color = "rgba(${rgba "base00"}, 0.9)";
|
|
|
|
bar-fg-color = "rgba(${rgba "base05"}, 1.0)";
|
|
|
|
border-color = "rgba(${rgba accentColourName}, 1.0)";
|
|
|
|
image-opacity = "1.0";
|
|
|
|
};
|
2024-07-07 08:47:50 +01:00
|
|
|
};
|
|
|
|
}
|