├── .gitignore ├── LICENSE ├── Linggle.alfredworkflow ├── README.md ├── snapshot1.png ├── snapshot2.png └── src ├── 0B3C3531-021F-4008-9760-04C866481BE1.png ├── Alfred_Workflow-1.40.0.dist-info ├── INSTALLER ├── METADATA ├── RECORD ├── REQUESTED ├── WHEEL └── top_level.txt ├── icon.png ├── info.plist ├── linggle.py ├── linggle_example.py └── 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/SXKDZ/linggle_alfred/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/LICENSE -------------------------------------------------------------------------------- /Linggle.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/Linggle.alfredworkflow -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/README.md -------------------------------------------------------------------------------- /snapshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/snapshot1.png -------------------------------------------------------------------------------- /snapshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/snapshot2.png -------------------------------------------------------------------------------- /src/0B3C3531-021F-4008-9760-04C866481BE1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/0B3C3531-021F-4008-9760-04C866481BE1.png -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.40.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.40.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/Alfred_Workflow-1.40.0.dist-info/METADATA -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.40.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/Alfred_Workflow-1.40.0.dist-info/RECORD -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.40.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.40.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | 6 | -------------------------------------------------------------------------------- /src/Alfred_Workflow-1.40.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | workflow 2 | -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/info.plist -------------------------------------------------------------------------------- /src/linggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/linggle.py -------------------------------------------------------------------------------- /src/linggle_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/linggle_example.py -------------------------------------------------------------------------------- /src/workflow/.alfredversionchecked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/Notify.tgz -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/__init__.py -------------------------------------------------------------------------------- /src/workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/background.py -------------------------------------------------------------------------------- /src/workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/notify.py -------------------------------------------------------------------------------- /src/workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/update.py -------------------------------------------------------------------------------- /src/workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/util.py -------------------------------------------------------------------------------- /src/workflow/version: -------------------------------------------------------------------------------- 1 | 1.40.0 -------------------------------------------------------------------------------- /src/workflow/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/web.py -------------------------------------------------------------------------------- /src/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/workflow.py -------------------------------------------------------------------------------- /src/workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SXKDZ/linggle_alfred/HEAD/src/workflow/workflow3.py --------------------------------------------------------------------------------