├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── action.js ├── filter.js ├── icon.png └── info.plist /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | tty.alfredworkflow 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isometry/alfred-tty/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | zip -j9 --filesync tty.alfredworkflow *.{plist,png,js} 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isometry/alfred-tty/HEAD/README.md -------------------------------------------------------------------------------- /action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isometry/alfred-tty/HEAD/action.js -------------------------------------------------------------------------------- /filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isometry/alfred-tty/HEAD/filter.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isometry/alfred-tty/HEAD/icon.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isometry/alfred-tty/HEAD/info.plist --------------------------------------------------------------------------------