waybar: fix systemd service

Fix xdg-portal issue where it'd take 25s for a GTK app to start
This commit is contained in:
Blaž Hrastnik 2021-05-02 05:26:10 +09:00 committed by GitHub
parent 614a5b55bf
commit 19fc0917c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 8 deletions

View file

@ -370,14 +370,13 @@ in {
"Highly customizable Wayland bar for Sway and Wlroots based compositors.";
Documentation = "https://github.com/Alexays/Waybar/wiki";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
};
Service = {
Type = "dbus";
BusName = "fr.arouillard.waybar";
ExecStart = "${cfg.package}/bin/waybar";
Restart = "always";
RestartSec = "1sec";
ExecReload = "kill -SIGUSR2 $MAINPID";
Restart = "on-failure";
KillMode = "mixed";
};