1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-27 16:57:29 +02:00

waybar: fix slow service stop (#1852)

Set the systemd user service to use "mixed" killmode, which lets waybar
stop its module scripts. This fixes issues where waybar blocks shutdown
until systemd sends a SIGKILL to waybar child processes.
This commit is contained in:
Pierre Labadens 2021-03-06 08:09:51 +01:00 committed by GitHub
parent 73559e0dbc
commit abc9d96d19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -378,6 +378,7 @@ in {
ExecStart = "${cfg.package}/bin/waybar";
Restart = "always";
RestartSec = "1sec";
KillMode = "mixed";
};
Install = { WantedBy = [ "graphical-session.target" ]; };

View file

@ -4,6 +4,7 @@ WantedBy=graphical-session.target
[Service]
BusName=fr.arouillard.waybar
ExecStart=@waybar@/bin/waybar
KillMode=mixed
Restart=always
RestartSec=1sec
Type=dbus