fix(hm/price): attach swww-daemon to compositor.target
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m2s

This commit is contained in:
Price Hiller 2024-07-17 04:30:56 -05:00
parent 9340ed9f89
commit 8c2a4aa7c1
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -24,10 +24,16 @@ in
ExecStopPost = "${cleanup-socket-script}";
ExecStart = "${pkgs.swww}/bin/swww-daemon";
};
Install.WantedBy = [ "graphical-session.target" ];
Install.WantedBy = [
"graphical-session.target"
"compositor.target"
];
Unit = {
Description = "Wayland Wallpaper Service";
PartOf = [ "graphical-session.target" ];
PartOf = [
"graphical-session.target"
"compositor.target"
];
After = [ "graphical-session.target" ];
};
};