Link: https://github.com/nix-community/stylix/pull/1995 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
32 lines
747 B
Nix
32 lines
747 B
Nix
{
|
|
mkTarget,
|
|
...
|
|
}:
|
|
mkTarget {
|
|
name = "go DiskUsage()";
|
|
humanName = "go DiskUsage()";
|
|
|
|
configElements =
|
|
{ colors }:
|
|
{
|
|
xdg.configFile."gdu/gdu.yaml" = {
|
|
enable = true;
|
|
text = with colors.withHashtag; ''
|
|
style:
|
|
selected-row:
|
|
text-color: "${base05}"
|
|
background-color: "${base00}"
|
|
result-row:
|
|
number-color: "${base06}"
|
|
directory-color: "${base02}"
|
|
footer:
|
|
text-color: "${base05}"
|
|
background-color: "${base00}"
|
|
number-color: "${base06}"
|
|
header:
|
|
text-color: "${base05}"
|
|
background-color: "${base00}"
|
|
'';
|
|
};
|
|
};
|
|
}
|