├── .gitignore ├── LICENCE ├── README.md ├── Reddit-1.8.1.alfredworkflow ├── Reddit.png ├── demo.gif ├── icon.png └── src ├── docopt.py ├── icon.png ├── info.plist ├── reddit.py ├── update-available.png └── workflow ├── .alfredversionchecked ├── Notify.tgz ├── __init__.py ├── background.py ├── notify.py ├── update.py ├── util.py ├── version ├── web.py ├── workflow.py └── workflow3.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/README.md -------------------------------------------------------------------------------- /Reddit-1.8.1.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/Reddit-1.8.1.alfredworkflow -------------------------------------------------------------------------------- /Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/Reddit.png -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/demo.gif -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- 1 | src/icon.png -------------------------------------------------------------------------------- /src/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/docopt.py -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/info.plist -------------------------------------------------------------------------------- /src/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/reddit.py -------------------------------------------------------------------------------- /src/update-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/update-available.png -------------------------------------------------------------------------------- /src/workflow/.alfredversionchecked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/Notify.tgz -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/__init__.py -------------------------------------------------------------------------------- /src/workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/background.py -------------------------------------------------------------------------------- /src/workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/notify.py -------------------------------------------------------------------------------- /src/workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/update.py -------------------------------------------------------------------------------- /src/workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/util.py -------------------------------------------------------------------------------- /src/workflow/version: -------------------------------------------------------------------------------- 1 | 1.36 -------------------------------------------------------------------------------- /src/workflow/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/web.py -------------------------------------------------------------------------------- /src/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/workflow.py -------------------------------------------------------------------------------- /src/workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-reddit/HEAD/src/workflow/workflow3.py --------------------------------------------------------------------------------