├── .gitignore ├── LICENSE.md ├── Make Transparent Copy.workflow └── Contents │ ├── Info.plist │ └── document.wflow ├── Paste as Plain Text.workflow └── Contents │ ├── Info.plist │ └── document.wflow └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | **/Contents/QuickLook 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmdanilov/mac-automation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Make Transparent Copy.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmdanilov/mac-automation/HEAD/Make Transparent Copy.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /Make Transparent Copy.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmdanilov/mac-automation/HEAD/Make Transparent Copy.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /Paste as Plain Text.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmdanilov/mac-automation/HEAD/Paste as Plain Text.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /Paste as Plain Text.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmdanilov/mac-automation/HEAD/Paste as Plain Text.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmdanilov/mac-automation/HEAD/README.md --------------------------------------------------------------------------------