Add Eveforest icon theme

This commit is contained in:
Elnu 2023-01-08 20:03:44 -08:00
parent 06a9960ed0
commit bf94301b84
4 changed files with 8 additions and 2 deletions

View file

@ -4,6 +4,10 @@
package = pkgs.callPackage ./gtk.nix {}; package = pkgs.callPackage ./gtk.nix {};
name = "Everforest-Dark-BL"; name = "Everforest-Dark-BL";
}; };
gtkIconTheme = pkgs: {
package = pkgs.callPackage ./gtk.nix {};
name = "Everforest-Dark";
};
wallpaper = "306286.jpg"; wallpaper = "306286.jpg";
background = "#1e2326"; background = "#1e2326";

View file

@ -32,7 +32,8 @@ stdenv.mkDerivation rec {
mv tmp $f mv tmp $f
done done
cp -a source/themes/* $out/share/themes mkdir -p $out/share/themes && cp -a source/themes/* $out/share/themes
mkdir -p $out/share/icons && cp -a source/icons/* $out/share/icons
jdupes -L -r $out/share jdupes -L -r $out/share

View file

@ -5,6 +5,7 @@
package = pkgs.nordic; package = pkgs.nordic;
name = "Nordic"; name = "Nordic";
}; };
gtkIconTheme = pkgs: null;
background = "#2e3440"; background = "#2e3440";
background-alt = "#3b4252"; background-alt = "#3b4252";

View file

@ -22,7 +22,7 @@ in
gtk = { gtk = {
enable = true; enable = true;
iconTheme = colors.gtkTheme pkgs; iconTheme = colors.gtkIconTheme pkgs;
theme = colors.gtkTheme pkgs; theme = colors.gtkTheme pkgs;
# Remove minimize, maximize, and close buttons # Remove minimize, maximize, and close buttons
gtk3.extraConfig = { gtk3.extraConfig = {