From 98f534e172750efb8c0f80f7fc80eabea34cb9bc Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Mon, 28 Jan 2019 23:50:36 +0100 Subject: [PATCH] flameshot: add bars to systemd After Fixes #544 --- modules/services/flameshot.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/services/flameshot.nix b/modules/services/flameshot.nix index d4cf90d5..aaeecdb0 100644 --- a/modules/services/flameshot.nix +++ b/modules/services/flameshot.nix @@ -24,7 +24,12 @@ in systemd.user.services.flameshot = { Unit = { Description = "Powerful yet simple to use screenshot software"; - After = [ "graphical-session-pre.target" ]; + After = [ + "graphical-session-pre.target" + "polybar.service" + "stalonetray.service" + "taffybar.service" + ]; PartOf = [ "graphical-session.target" ]; };