Hello Nation!
I'm very new to LaunchAgents and wanted to set one up. Currently I'm using a login script that works fine, but I want to move away from login scripts.
What I want to happen: Launch a non-Apple app at login.
I tried a configuration profile but as soon as I typed in .app, it would disappear.
Here's my plist, I'm more than likely doing something wrong and would love if something guided me in the right direction!
~~~~
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.ntware.teststation5</string>
<key>RunAtLoad</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/Applications/UniFLOW/MacClient.app</string>
</array>
</dict>
</plist>
~~~~