nixpkgs/overlays/qogir-theme/default.nix
Daniel Siepmann e909cf1178
Streamline overlay overrides
st and dmenu are suckless tools where the function already accepts
patches.

The others should use overrideAttrs to extend existing patches.
2022-11-10 09:36:35 +01:00

11 lines
342 B
Nix

self: super: {
qogir-theme = super.qogir-theme.overrideAttrs(old: {
patches = (old.patches or []) ++ [
# TODO: Find out how to properly render inactive menu items
# TODO: Find out how to properly render background of selected text
# TODO: Properly adjust svgs and then compile them
./colors.patch
];
});
}