Kde/plasma: get rid of custom look and feel

This commit is contained in:
Toast 2024-01-17 13:23:33 +01:00
parent 42776e6396
commit 7f86264983
8 changed files with 1 additions and 74 deletions

View file

@ -3,7 +3,6 @@
let
# Set up the default kde options
kdeglobals = lib.generators.toINI {} {
KDE.LookAndFeelPackage = "org.kde.breezedarktint.desktop";
KDE.SingleClick = false;
General = {
accentColorFromWallpaper = true;
@ -37,18 +36,6 @@ let
runHook postInstall
'';
};
lookAndFeel = pkgs.stdenv.mkDerivation {
name = "toast-look-and-feel";
src = ./look-and-feel;
installPhase = ''
runHook preInstall
mkdir -p $out/share/plasma/look-and-feel/
cp -r xyz.toast003.customtheme.desktop $out/share/plasma/look-and-feel/
runHook postInstall
'';
};
# /etc/xdg is not read by plasma, so to change the default settings you need to put them in a package
plasmaDefaults = pkgs.stdenv.mkDerivation {
@ -82,7 +69,7 @@ in
Install the patched Breeze color schemes and look and feel packages,
as well as the plasma default configs
*/
environment.systemPackages = [ breezeTint lookAndFeel plasmaDefaults ];
environment.systemPackages = [ breezeTint plasmaDefaults ];
# Plasma configs should be on all users
home-manager.sharedModules = [