├── Docs ├── RunService.png ├── RunService2.png ├── Services1.png └── Services2.png ├── LICENSE ├── README.md ├── Run Service.action └── Contents │ ├── Info.plist │ ├── MacOS │ └── Run Service │ └── Resources │ └── en.lproj │ ├── InfoPlist.strings │ └── main.nib ├── Run Service.xcodeproj ├── .gitignore └── project.pbxproj ├── RunService.action.zip └── Services Automator Actions ├── Info.plist ├── Services_Automator_Actions.h ├── Services_Automator_Actions.m └── en.lproj ├── InfoPlist.strings └── main.xib /Docs/RunService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Docs/RunService.png -------------------------------------------------------------------------------- /Docs/RunService2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Docs/RunService2.png -------------------------------------------------------------------------------- /Docs/Services1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Docs/Services1.png -------------------------------------------------------------------------------- /Docs/Services2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Docs/Services2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/README.md -------------------------------------------------------------------------------- /Run Service.action/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Run Service.action/Contents/Info.plist -------------------------------------------------------------------------------- /Run Service.action/Contents/MacOS/Run Service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Run Service.action/Contents/MacOS/Run Service -------------------------------------------------------------------------------- /Run Service.action/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Run Service.action/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Run Service.action/Contents/Resources/en.lproj/main.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Run Service.action/Contents/Resources/en.lproj/main.nib -------------------------------------------------------------------------------- /Run Service.xcodeproj/.gitignore: -------------------------------------------------------------------------------- 1 | /xcuserdata/ 2 | -------------------------------------------------------------------------------- /Run Service.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Run Service.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RunService.action.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/RunService.action.zip -------------------------------------------------------------------------------- /Services Automator Actions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Services Automator Actions/Info.plist -------------------------------------------------------------------------------- /Services Automator Actions/Services_Automator_Actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Services Automator Actions/Services_Automator_Actions.h -------------------------------------------------------------------------------- /Services Automator Actions/Services_Automator_Actions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Services Automator Actions/Services_Automator_Actions.m -------------------------------------------------------------------------------- /Services Automator Actions/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Services Automator Actions/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Services Automator Actions/en.lproj/main.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempelmann/RunServiceActionForAutomator/HEAD/Services Automator Actions/en.lproj/main.xib --------------------------------------------------------------------------------