├── LICENSE ├── Makefile ├── README.md ├── Screen Sharing.alfredworkflow ├── screenshot.png └── src ├── icon.png └── info.plist /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pstadler/alfred-screensharing/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | zip -j9 --filesync Screen\ Sharing.alfredworkflow src/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pstadler/alfred-screensharing/HEAD/README.md -------------------------------------------------------------------------------- /Screen Sharing.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pstadler/alfred-screensharing/HEAD/Screen Sharing.alfredworkflow -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pstadler/alfred-screensharing/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pstadler/alfred-screensharing/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pstadler/alfred-screensharing/HEAD/src/info.plist --------------------------------------------------------------------------------