os/modules/sway/ydotool.service.nix

19 lines
473 B
Nix
Raw Normal View History

2022-11-20 22:28:23 +00:00
{pkgs, ...}: {
2021-05-30 19:10:28 +00:00
Unit = {
Description = "ydotool - Generic command-line automation tool (no X!)";
2022-11-20 22:28:23 +00:00
Documentation = ["https://github.com/ReimuNotMoe/ydotool"];
BindsTo = ["sway-session.target"];
After = ["sway-session.target"];
2021-05-30 19:10:28 +00:00
};
Service = {
Type = "simple";
ExecStart = "${pkgs.ydotool}/bin/ydotoold";
Restart = "on-failure";
RestartSec = "1";
TimeoutStopSec = "10";
};
Install = {
2022-11-20 22:28:23 +00:00
WantedBy = ["sway-session.target"];
2021-05-30 19:10:28 +00:00
};
}