taffybar and status-notifier-watcher: move run queue rules to sni watcher

This commit is contained in:
Anton Plotnikov 2018-07-31 15:30:17 +03:00
parent 501415e8cd
commit 81100ba2ba
2 changed files with 6 additions and 6 deletions

View file

@ -31,6 +31,7 @@ in
Description = "SNI watcher"; Description = "SNI watcher";
After = [ "graphical-session-pre.target" ]; After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ]; PartOf = [ "graphical-session.target" ];
Before = [ "taffybar.service" ];
}; };
Service = { Service = {
@ -38,7 +39,10 @@ in
}; };
Install = { Install = {
WantedBy = [ "graphical-session.target" ]; WantedBy = [
"graphical-session.target"
"graphical-session-pre.target"
];
}; };
}; };
}; };

View file

@ -29,11 +29,7 @@ in
systemd.user.services.taffybar = { systemd.user.services.taffybar = {
Unit = { Unit = {
Description = "Taffybar desktop bar"; Description = "Taffybar desktop bar";
Wanted = [ "graphical-session-pre.target" ]; After = [ "graphical-session-pre.target" ];
After = [
"graphical-session-pre.target"
"status-notifier-watcher.service"
];
PartOf = [ "graphical-session.target" ]; PartOf = [ "graphical-session.target" ];
}; };