1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00

flameshot: add bars to systemd After

Fixes #544
This commit is contained in:
Robert Helgesson 2019-01-28 23:50:36 +01:00
parent a68c8cf5f1
commit 98f534e172
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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" ];
};