os/modules/graphical/sway/libinput-gestures.service.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
505 B
Nix
Raw Normal View History

2024-08-19 10:38:46 +00:00
{ pkgs, ... }:
{
2021-05-30 19:10:28 +00:00
Unit = {
Description = "Actions gestures on your touchpad using libinput";
2024-08-19 10:38:46 +00:00
Documentation = [ "https://github.com/bulletmark/libinput-gestures" ];
BindsTo = [ "sway-session.target" ];
After = [ "sway-session.target" ];
2021-05-30 19:10:28 +00:00
};
Service = {
Type = "simple";
ExecStart = "${pkgs.libinput-gestures}/bin/libinput-gestures";
Restart = "on-failure";
RestartSec = "1";
TimeoutStopSec = "10";
};
Install = {
2024-08-19 10:38:46 +00:00
WantedBy = [ "sway-session.target" ];
2021-05-30 19:10:28 +00:00
};
}