matth / growl-atom

A script to monitor Atom feeds and create Growl notitifcations for new entries

This URL has Read+Write access

growl-atom / config
100644 41 lines (34 sloc) 0.956 kb
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
---
 
# Example config for growl-atom, note this is a YAML file, see http://yaml.org/
 
# Available options:
#
# global:
# proxy_host: your.proxy
# proxy_port: 80
# proxy_user: username
# proxy_pass: password
#
# feeds:
# name: Growl Application Name
# url: http://your.feed.com
# auth_user: http_user
# auth_pass: http_pass
# cert: /path/to/your/client/cert.pem
# title: Name of Atom entry node to be used as notification title, default is title
# message: Name of Atom entry node to be used as notification message, default is summary
# image: /path/to/notification/icon.png
# sticky: true default is false
#
 
# Global configs
#
# These config options can be overwritten on a per feed basis
 
global:
 
 
feeds:
 - name: Gmail
   url: https://mail.google.com/mail/feed/atom/
   auth_user: your_gmail_username
   auth_pass: your_gmail_password
   image: ~/.growl-atom/icons/gmail.png
   title: author/email
   message: title
   sticky: false