├── .gitignore ├── LICENSE ├── README.md ├── ag ├── fd ├── fd.py ├── hanz2piny ├── icon.png ├── images ├── en.jpg ├── error-intel.jpg ├── f-1.28.jpg ├── f-80.jpg └── t-1.28-400M.jpg ├── info.plist ├── intel └── libpcre.1.dylib ├── m1 └── libpcre.1.dylib ├── search file.py ├── search text.py └── workflow ├── .alfredversionchecked ├── Notify.tgz ├── __init__.py ├── background.py ├── notify.py ├── update.py ├── util.py ├── version ├── web.py ├── workflow.py └── workflow3.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/README.md -------------------------------------------------------------------------------- /ag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/ag -------------------------------------------------------------------------------- /fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/fd -------------------------------------------------------------------------------- /fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/fd.py -------------------------------------------------------------------------------- /hanz2piny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/hanz2piny -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/icon.png -------------------------------------------------------------------------------- /images/en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/images/en.jpg -------------------------------------------------------------------------------- /images/error-intel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/images/error-intel.jpg -------------------------------------------------------------------------------- /images/f-1.28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/images/f-1.28.jpg -------------------------------------------------------------------------------- /images/f-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/images/f-80.jpg -------------------------------------------------------------------------------- /images/t-1.28-400M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/images/t-1.28-400M.jpg -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/info.plist -------------------------------------------------------------------------------- /intel/libpcre.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/intel/libpcre.1.dylib -------------------------------------------------------------------------------- /m1/libpcre.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/m1/libpcre.1.dylib -------------------------------------------------------------------------------- /search file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/search file.py -------------------------------------------------------------------------------- /search text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/search text.py -------------------------------------------------------------------------------- /workflow/.alfredversionchecked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/Notify.tgz -------------------------------------------------------------------------------- /workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/__init__.py -------------------------------------------------------------------------------- /workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/background.py -------------------------------------------------------------------------------- /workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/notify.py -------------------------------------------------------------------------------- /workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/update.py -------------------------------------------------------------------------------- /workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/util.py -------------------------------------------------------------------------------- /workflow/version: -------------------------------------------------------------------------------- 1 | 1.40.0 -------------------------------------------------------------------------------- /workflow/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/web.py -------------------------------------------------------------------------------- /workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/workflow.py -------------------------------------------------------------------------------- /workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitsc/alfred.filesearch/HEAD/workflow/workflow3.py --------------------------------------------------------------------------------