Fix theme scripts not waiting

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-04 14:23:55 +02:00
parent 6d913c2ff0
commit f3faf4d4b6

View File

@@ -22,12 +22,16 @@ let
--contrast ${builtins.toString cfg.contrast} --contrast ${builtins.toString cfg.contrast}
${cfg.initExtraConfig} ${cfg.initExtraConfig}
wait
''; '';
}; };
reload = pkgs.writeShellApplication { reload = pkgs.writeShellApplication {
name = "theme-reload"; name = "theme-reload";
text = cfg.reloadExtraConfig; text = ''
${cfg.reloadExtraConfig}
wait
'';
}; };
theme = pkgs.writeShellApplication { theme = pkgs.writeShellApplication {