fix(home/swaybg): Make it so the systemd unit can actually succeed at boot
This commit is contained in:
parent
bccc720ab1
commit
41742c1ad0
1 changed files with 6 additions and 3 deletions
|
@ -15,14 +15,14 @@ in {
|
||||||
|
|
||||||
systemd.user.services.swaybg = {
|
systemd.user.services.swaybg = {
|
||||||
Install = {
|
Install = {
|
||||||
WantedBy = ["graphical-session.target"];
|
WantedBy = ["xdg-desktop-autostart.target"];
|
||||||
};
|
};
|
||||||
|
|
||||||
Unit = {
|
Unit = {
|
||||||
Description = "Wallpaper tool for Wayland compositors";
|
Description = "Wallpaper tool for Wayland compositors";
|
||||||
Documentation = ["man:swaybg(1)"];
|
Documentation = ["man:swaybg(1)"];
|
||||||
After = ["graphical-session-pre.target"];
|
After = ["graphical-session.target"];
|
||||||
PartOf = ["graphical-session.target"];
|
PartOf = ["xdg-desktop-autostart.target"];
|
||||||
};
|
};
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
|
@ -31,6 +31,9 @@ in {
|
||||||
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
|
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
|
||||||
KillMode = "mixed";
|
KillMode = "mixed";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
|
RestartSec = "1s";
|
||||||
|
RestartMaxDelaySec = "30s";
|
||||||
|
RestartSteps = 10;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue