MacOS – How to quit an app in OS X Yosemite

applicationsmacos

I have this annoying BitTorrent app that won't quit. I first tried right clicking and force quit from dock. It does show 'App not responding', however, on clicking 'Force quit' nothing happens, and the app persists in the dock with the black dot below:

enter image description here

So I next opened 'Force Quit' from Apple menu, and clicking it launches the list of processes open, and sure there I see BitTorrent. However, same here, on force quitting it, nothing happens, the app name is still there in the list of open apps.

So I next open Activity monitor, and check if it is there. However, as you can see, it is not there:

enter image description here

However, if I switch to the energy tab, I see BitTorrent there, but it shows as disabled, and consequently I am unable to quit it by clicking the cancel button at the top left (which is disabled):

enter image description here

So I login to my terminal, and type top to see whether the app shows up, and it doesn't.

Then I try launchctl list to see which things were launched by Apple at startup, and spot something like com.bittorrent.BitTorrent.307036. So I run sudo launchctl remove com.bittorrent.BitTorrent.307036, and still nothing happens, the app remains frozen in the dock.

Finally, I tried killall -9 Dock and it does nothing. This is happening quite frequently off late. Last day it happened to my Outlook app, I had to restart to get rid of it. How do I solve this problem?

Best Answer

Your last screenshot is showing the apps that were running in the past 8 hours. You can try running ps -e | grep -i bittorrent in Terminal.app to confirm, but it doesn't appear to be running at this time. Relaunching the Dock should make the icon disappear, unless it's a side effect of autotermination:

In Lion [and subsequent versions of OS X], an ostensibly "running" application may have no associated process (because the operating system automatically terminated it in order to reclaim resources) and an application may have a process even when it doesn't appear to be running. Applications without processes. Processes without applications. Did Lion just blow your mind?