mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
add modify theme
This commit is contained in:
parent
64ab66c238
commit
20df8a4711
1 changed files with 5 additions and 4 deletions
|
@ -18,24 +18,25 @@
|
||||||
gnome-themes-extra
|
gnome-themes-extra
|
||||||
])
|
])
|
||||||
++ (with pkgs.gnomeExtensions; [
|
++ (with pkgs.gnomeExtensions; [
|
||||||
user-themes
|
arcmenu
|
||||||
blur-my-shell
|
blur-my-shell
|
||||||
|
user-themes
|
||||||
]);
|
]);
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
package = pkgs.tela-icon-theme;
|
package = pkgs.tela-icon-theme;
|
||||||
name = "Tela-green";
|
name = "Tela-blue";
|
||||||
};
|
};
|
||||||
theme = {
|
theme = {
|
||||||
package = pkgs.orchis-theme.overrideAttrs {
|
package = pkgs.orchis-theme.overrideAttrs {
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
bash install.sh -d $out/share/themes -t all -c dark -l --tweaks macos --tweaks solid
|
bash install.sh -d $out/share/themes -t all -c dark -l --tweaks macos
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
name = "Orchis-Green-Dark";
|
name = "Orchis-Dark";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue