mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-07 17:41:03 +01: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:
parent
73559e0dbc
commit
abc9d96d19
2 changed files with 2 additions and 0 deletions
|
|
@ -378,6 +378,7 @@ in {
|
|||
ExecStart = "${cfg.package}/bin/waybar";
|
||||
Restart = "always";
|
||||
RestartSec = "1sec";
|
||||
KillMode = "mixed";
|
||||
};
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue