├── .gitignore ├── LICENCE.txt ├── Readme.md ├── Smart-Folders-3.0.alfredworkflow ├── TODO ├── icon.png ├── img └── screenshot-1.png ├── metadata.json ├── requirements.txt └── src ├── Alfred_Workflow-1.39.0.dist-info ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL └── top_level.txt ├── Help.html ├── Help.md ├── Licence.txt ├── cache.py ├── docopt-0.6.2.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json └── top_level.txt ├── docopt.py ├── icon.png ├── info.plist ├── loading.png ├── screenshot-1.png ├── screenshot-config.png ├── smartfolders.py └── workflow ├── 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-smartfolders/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/Readme.md -------------------------------------------------------------------------------- /Smart-Folders-3.0.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/Smart-Folders-3.0.alfredworkflow -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/TODO -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- 1 | src/icon.png -------------------------------------------------------------------------------- /img/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/img/screenshot-1.png -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/metadata.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Alfred-Workflow==1.39.0 2 | docopt==0.6.2 3 | -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.39.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.39.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/Alfred_Workflow-1.39.0.dist-info/METADATA -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.39.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/Alfred_Workflow-1.39.0.dist-info/RECORD -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.39.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | 6 | -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.39.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | workflow 2 | -------------------------------------------------------------------------------- /src/Help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/Help.html -------------------------------------------------------------------------------- /src/Help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/Help.md -------------------------------------------------------------------------------- /src/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/Licence.txt -------------------------------------------------------------------------------- /src/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/cache.py -------------------------------------------------------------------------------- /src/docopt-0.6.2.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/docopt-0.6.2.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /src/docopt-0.6.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/docopt-0.6.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/docopt-0.6.2.dist-info/METADATA -------------------------------------------------------------------------------- /src/docopt-0.6.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/docopt-0.6.2.dist-info/RECORD -------------------------------------------------------------------------------- /src/docopt-0.6.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/docopt-0.6.2.dist-info/WHEEL -------------------------------------------------------------------------------- /src/docopt-0.6.2.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/docopt-0.6.2.dist-info/metadata.json -------------------------------------------------------------------------------- /src/docopt-0.6.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /src/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/docopt.py -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/info.plist -------------------------------------------------------------------------------- /src/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/loading.png -------------------------------------------------------------------------------- /src/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/screenshot-1.png -------------------------------------------------------------------------------- /src/screenshot-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/screenshot-config.png -------------------------------------------------------------------------------- /src/smartfolders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/smartfolders.py -------------------------------------------------------------------------------- /src/workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/Notify.tgz -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/__init__.py -------------------------------------------------------------------------------- /src/workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/background.py -------------------------------------------------------------------------------- /src/workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/notify.py -------------------------------------------------------------------------------- /src/workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/update.py -------------------------------------------------------------------------------- /src/workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/util.py -------------------------------------------------------------------------------- /src/workflow/version: -------------------------------------------------------------------------------- 1 | 1.39.0 -------------------------------------------------------------------------------- /src/workflow/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/web.py -------------------------------------------------------------------------------- /src/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/workflow.py -------------------------------------------------------------------------------- /src/workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-smartfolders/HEAD/src/workflow/workflow3.py --------------------------------------------------------------------------------