-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.txt
48 lines (38 loc) · 1.34 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
GoAgentOSX.app
==============
GoAgent 3.0 ships with a new shell script for the GUI launcher. However, launching it
leaves the Terminal opened and needs to be closed manually.
This application is a wrapper to the launcher, created using Platypus. It has been
created simply to eliminate the terminal window.
GoAgent
https://code.google.com/p/goagent/
Platypus
http://sveinbjorn.org/platypus
Preferences:
============
By default, this app looks for "goagent-osx.command" distributed from GoAgent 3.0.x
in /Application/goagent/goagent/local directory. You can modify a property to point
to your installation if it's different.
Configuration:
==============
1. defaults
Simply run the defaults command to update your goagent root directory
defaults write /Applications/goagent/GoAgentOSX.app/Contents/Resources/AppSettings \
ScriptArgs -array -string /Applications/goagent/goagent
2. Editing the AppSettiings.plist
You can simply edit the AppSettings property list file and update the ScriptArgs key value
vi GoAgentOSX.app/Contents/Resources/AppSettings.plist
XML:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ScriptArgs</key>
<array>
<string>/Applications/goagent/goagent</string>
</array>
</dict>
</plist>
@d7an
2013-05-27