Kde: overhaul custom theme creation

This commit is contained in:
Toast 2023-08-31 00:45:39 +02:00
parent 124322df4c
commit a67ce6f8ee
9 changed files with 64 additions and 841 deletions

View file

@ -52,13 +52,14 @@ let
};
lookAndFeel = pkgs.stdenv.mkDerivation {
name = "toast-look-and-feel";
src = "${pkgs.plasma-workspace}";
patches = [ ./patches/TintedLookAndFeel.patch ];
src = ./look-and-feel;
#postUnpack = "ls -la && uiagysduiags";
#patches = [ ./patches/TintedLookAndFeel.patch ];
installPhase = ''
runHook preInstall
mkdir -p $out/share/plasma/look-and-feel/
cp -r share/plasma/look-and-feel/* $out/share/plasma/look-and-feel/
cp -r xyz.toast003.customtheme.desktop $out/share/plasma/look-and-feel/
runHook postInstall
'';