How do I disable Ktorrent from autostarting on login?
Solution 1:
When you close ktorrent, it's still running in the system tray. If you have "restore previous session" enabled in the System "Startup and Shutdown" settings, KTorrent will be re-started in windowed mode, even if it was minimized to the tray when shut down. To prevent KTorrent from starting, either
- close it by right clicking on it's tray entry and press "Quit".
- disabling "restore previous session" in System Settings
Solution 2:
Do two things:
-
First check to see if it's enabled with the command
sudo systemctl list-unit-files | grep -i ktorrent
-
Then disable it with
sudo systemctl disable ktorrent
Info:
list-unit-files [PATTERN...] List unit files installed on the system, in combination with their enablement state (as reported by is-enabled). If one or more PATTERNs are specified, only unit files whose name matches one of them are shown (patterns matching unit file system paths are not supported).