Link: https://github.com/nix-community/stylix/pull/1371 Reviewed-by: pancho horrillo <pancho@pancho.name> Reviewed-by: Matt Sturgeon <matt@sturgeon.me.uk> Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
14 lines
327 B
Nix
14 lines
327 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "eog";
|
|
humanName = "Eye of GNOME Image Viewer";
|
|
|
|
configElements =
|
|
{ colors }:
|
|
{
|
|
dconf.settings."org/gnome/eog/view" = {
|
|
# transparency = "background"; # Disables the grey and white check pattern.
|
|
background-color = "#${colors.base00}";
|
|
};
|
|
};
|
|
}
|