nixpkgs/overlays/qogir-theme/default.nix

11 lines
342 B
Nix
Raw Normal View History

2022-09-02 12:38:47 +02:00
self: super: {
qogir-theme = super.qogir-theme.overrideAttrs(old: {
patches = (old.patches or []) ++ [
2022-09-02 13:28:57 +02:00
# 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
2022-09-02 12:38:47 +02:00
./colors.patch
];
});
}