#!/bin/bash
# Theresa L. Ford, 12/2009, www.cattail.nu
# Version 1.0

# This is the configuration file for the solona.sh script.  You can edit it
# by hand or use the setup.sh script.

# Edit the following options to set your login, file paths, and png handling.

# Your solona.net login information
declare -x mylogin="username"
declare -x mypassword="password"

# picture path directory where your screenshot gets dumped.
# By default, the Mac puts it on your desktop using Command + Shift + 4 and then Spacebar and then Click.
# Include the ending /
# Do not use the ~.  Instead use the full path.
declare -x mypicturedirectory="/Users/tford/Desktop/"

# prompt for file name verification, set to 1 for prompt, set to 0 to just send the latest png.
declare -x myverificationprompt=0

# NOT IMPLEMENTED YET
# delete the png file after it is sent, set to 1 to delete, set to 0 to just leave the file or archive
# do not set both this and myarchive to 1.
declare -x mydeletefile=0

# NOT IMPLEMENTED YET
# archive the png file after it is sent, set to 1 to archive, set to 0 to just leave the file or delete it.
# do not set both this and mydelete to 1.
declare -x myarchive=1

# NOT IMPLEMENTED YET
# archive path directory, where the script moves your png after it is uploaded.
# This only means something if the myarchive variable is set to 1.
# Include the ending /. Do not use the ~.  Instead use the full path.
# The directory must exist already.
declare -x myarchivedirectory="/Users/tford/Desktop/solona/"

