├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_suggestion.yml ├── LICENSE ├── README.md ├── Resources └── find-dicts.swift └── Workflow ├── find-dicts ├── icon.png ├── images └── about │ ├── asdicm.png │ └── newdict.png └── info.plist /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/.github/ISSUE_TEMPLATE/feature_suggestion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/README.md -------------------------------------------------------------------------------- /Resources/find-dicts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/Resources/find-dicts.swift -------------------------------------------------------------------------------- /Workflow/find-dicts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/Workflow/find-dicts -------------------------------------------------------------------------------- /Workflow/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/Workflow/icon.png -------------------------------------------------------------------------------- /Workflow/images/about/asdicm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/Workflow/images/about/asdicm.png -------------------------------------------------------------------------------- /Workflow/images/about/newdict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/Workflow/images/about/newdict.png -------------------------------------------------------------------------------- /Workflow/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredapp/applescript-dictionaries-workflow/HEAD/Workflow/info.plist --------------------------------------------------------------------------------