I am using XDM (Xtreme Download Manager software) on my Mac.

When I login then the XDM software is started. But I do not see it in Login items(System Preferences → Users & Groups → Login Items tab.)

How is the software starting up if it is not present in Login items and How do I stop it from opening automatically on Login?

XDM started on MAC login

XDM not present in MAC login items

有帮助吗?

解决方案

We have to change the settings below in the XDM application (Tools -> Options-> Advanced settings -> View settings.)

I used homebrew to install XDM and this option is selected by default.

enter image description here

If you look at the source code you'll find that the automatic start is controlled by a LaunchAgent called org.sdg.xdman.plist stored in ~/Library/LaunchAgents.

public static void addToStartup() {
  File dir = new File(System.getProperty("user.home"), "Library/LaunchAgents");
  dir.mkdirs();
  File f = new File(dir, "org.sdg.xdman.plist");
  FileOutputStream fs = null;
  ...
许可以下: CC-BY-SA归因
不隶属于 apple.stackexchange
scroll top