diff options
author | Timothy Pearson <[email protected]> | 2013-03-12 00:48:19 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-03-12 00:48:19 -0500 |
commit | 128f9d21e770ce3ca1ccced78103431732e7b40f (patch) | |
tree | a12beed863dbb346f0f59cd8e1ff096c2ed0c470 /src/main.cpp | |
parent | 7644528b7c5f7ed8026766e43d1f3e666bc3b3c4 (diff) | |
download | kerberostray-128f9d21e770ce3ca1ccced78103431732e7b40f.tar.gz kerberostray-128f9d21e770ce3ca1ccced78103431732e7b40f.zip |
Fix autostart
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index e9e7ba6..d41bcb3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -41,6 +41,9 @@ int main(int argc, char *argv[]) TDEApplication app; + // We handle autostart via standard autostart-enabled .desktop file instead of the session manager + app.disableSessionManagement(); + TopLevel toplevel; KWin::setSystemTrayWindowFor(toplevel.winId(), 0); toplevel.show(); |