https://bugs.kde.org/show_bug.cgi?id=466193
--- Comment #4 from Erik Quaeghebeur <bugs.kde....@e3q.eu> --- (In reply to Nate Graham from comment #3) > Hmm, kactivitymanagerd's service file has this in it: > > Before=graphical-session.target But is graphical-session.target the one that matters here? I have the feeling it is not. In the log, I see --- systemd[1128]: Starting plasma-kactivitymanagerd.service... systemd[1128]: Started plasma-plasmashell.service. --- So plasmashell is started essentially concurrently with kactivitymanagerd. This is not strange, as we can see from their unit sections in their service files: ---plasma-plasmashell.service--- [Unit] Description=KDE Plasma Workspace After=plasma-ksmserver.service plasma-kcminit.service PartOf=graphical-session.target --- ---plasma-kactivitymanagerd.service--- [Unit] Description=KActivityManager Activity manager Service PartOf=graphical-session.target Before=graphical-session.target --- So AFAIU, in plasma-plasmashell.service, we should have the following as the ‘After’ line: --- After=plasma-ksmserver.service plasma-kcminit.service plasma-kactivitymanagerd.service --- -- You are receiving this mail because: You are watching all bug changes.