Subversion Repositories Plazes

[/] [BASH/] [BashLauncherSettings.sh] - Rev 2

Compare with Previous | Blame | View Log

#--------------------------
# USER CONFIGURABLE OPTIONS
#--------------------------
 
# Set to 1 for debugging information, 0 for more quiet operation
 
DEBUG=1
 
# Should we keep a logfile?  Set to 1 for yes, 0 for no.
 
LOG=1
 
# If we ARE keeping a logfile, where is it?
 
LOGFILE=plazes.log
 
# Set to:
# "osx" for Mac OS X 
# "linux" for Linux
# "zaurus" for Sharp Zaurus
 
OS="mac"
 
# Your Plazes.com Account Information - you can get a Plazes.com account at, well, Plazes.com.  It's free
 
PLAZES_USERNAME=""
PLAZES_PASSWORD=""
 
# Your Plazes.com Developer Key.  While not required for regular everyday use of Plazes.com, a Developer Key
# is required for custom launchers.  See http://beta.plazes.com/info/files/ for information on how to get one.
 
PLAZES_DEVKEY=""
 
# The "production" Plazes.com XML-RPC server is beta.plazes.com
# The "development" Plazes.com XML-RPC server is developer.plazes.com
# Set this as appropriate.
 
PLAZES_SERVER="beta.plazes.com"
PLAZES_URI="/xmlrpc/launcher.php"
 
# Set some timing variable (in seconds).
# The Plazes.com Launcher API says to update every 4 minutes, and re-launch every 8 minutes
 
PLAZES_BETWEEN_UPDATES=240
 

Compare with Previous | Blame | View Log