mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
waybar: integrate with tray.target (#6675)
Inspired by [#3432][0], but with a smaller footprint. This change makes it so that services with `Requires=tray.target` and `After=tray.target`, such as [`blueman-applet`][1] or [`network-manager-applet`][2] get started *after* waybar is ready. [0]: https://github.com/nix-community/home-manager/pull/3432 [1]:6c2b79403e/modules/services/blueman-applet.nix
[2]:6c2b79403e/modules/services/network-manager-applet.nix
This commit is contained in:
parent
b9da58d505
commit
338b2eabdf
2 changed files with 5 additions and 3 deletions
|
@ -321,7 +321,7 @@ in {
|
|||
Description =
|
||||
"Highly customizable Wayland bar for Sway and Wlroots based compositors.";
|
||||
Documentation = "https://github.com/Alexays/Waybar/wiki";
|
||||
PartOf = [ cfg.systemd.target ];
|
||||
PartOf = [ cfg.systemd.target "tray.target" ];
|
||||
After = [ cfg.systemd.target ];
|
||||
ConditionEnvironment = "WAYLAND_DISPLAY";
|
||||
X-Restart-Triggers = optional (settings != [ ])
|
||||
|
@ -339,8 +339,8 @@ in {
|
|||
Environment = [ "GTK_DEBUG=interactive" ];
|
||||
};
|
||||
|
||||
Install.WantedBy =
|
||||
lib.optional (cfg.systemd.target != null) cfg.systemd.target;
|
||||
Install.WantedBy = [ "tray.target" ]
|
||||
++ lib.optional (cfg.systemd.target != null) cfg.systemd.target;
|
||||
};
|
||||
})
|
||||
]);
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[Install]
|
||||
WantedBy=tray.target
|
||||
WantedBy=sway-session.target
|
||||
|
||||
[Service]
|
||||
|
@ -13,3 +14,4 @@ ConditionEnvironment=WAYLAND_DISPLAY
|
|||
Description=Highly customizable Wayland bar for Sway and Wlroots based compositors.
|
||||
Documentation=https://github.com/Alexays/Waybar/wiki
|
||||
PartOf=sway-session.target
|
||||
PartOf=tray.target
|
||||
|
|
Loading…
Add table
Reference in a new issue