diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-11-05 23:23:06 -0500 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-11-05 23:23:06 -0500 |
commit | 205e656745e8d4efe60deb78b4a70de78ea5f187 (patch) | |
tree | 215be6ca42b8beb1237ccf87a1f23a26e66e5b72 /config.py.example | |
parent | 0dfab32579a3b6b7a1a063790b587eee4ed505a2 (diff) | |
download | rsnotify-205e656745e8d4efe60deb78b4a70de78ea5f187.tar.xz rsnotify-205e656745e8d4efe60deb78b4a70de78ea5f187.zip |
Version 0.1.0
Diffstat (limited to 'config.py.example')
-rw-r--r-- | config.py.example | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.py.example b/config.py.example new file mode 100644 index 0000000..c031e50 --- /dev/null +++ b/config.py.example @@ -0,0 +1,15 @@ +import os, logging + +USERNAME='' +PASSWORD='' + +# log level +LOGLEVEL=logging.INFO + +# seconds to sleep between queries +SLEEP=300 + +# icon for notifications +ICON=os.path.dirname(__file__ + '/icon.png') + +# vim:ft=python: |