├── .github └── workflows │ └── build.yml ├── .gitignore ├── 1D8804FD-F9E6-457D-83D8-E3AEA432BA1E.png ├── 1FE4B488-8FF6-4E08-8781-B53953275FAE.png ├── 83D7B363-3BEB-49FF-94CA-CB1246A30F1D.png ├── A7DE7A70-B3E2-4531-9509-01F3BF4FE2DC.png ├── B0B38CAD-6949-4F11-9B8E-B53F7538F5EB.png ├── E7E3A0BD-6513-455B-A6B5-0AB88A9C96B1.png ├── LICENSE ├── README.md ├── desktop-icons-visible.swift ├── firstrun.sh ├── icon.png ├── icons.sketch ├── icons ├── all-in-one.png ├── annotate-clipboard.png ├── annotate.png ├── capture-area-and-annotate.png ├── capture-area-and-pin.png ├── capture-area.png ├── capture-fullscreen-and-annotate.png ├── capture-fullscreen-and-pin.png ├── capture-fullscreen.png ├── capture-previous-area.png ├── capture-text.png ├── capture-window-and-annotate.png ├── capture-window-and-pin.png ├── capture-window.png ├── hide-desktop-icons.png ├── open-history.png ├── pin-clipboard.png ├── pin.png ├── record-screen.png ├── restore-recently-closed.png ├── scrolling-capture.png ├── self-timer.png └── show-desktop-icons.png ├── info.plist ├── items.sh ├── pngpaste ├── screenshots ├── actions-list-1.png ├── actions-list-2.png ├── clipboard-actions-list.png └── file-actions.png └── scripts ├── all-in-one.sh ├── capture-area-and-annotate.sh ├── capture-area-and-pin.sh ├── capture-area.sh ├── capture-fullscreen-and-annotate.sh ├── capture-fullscreen-and-pin.sh ├── capture-fullscreen.sh ├── capture-previous-area.sh ├── capture-text.sh ├── capture-window-and-annotate.sh ├── capture-window-and-pin.sh ├── capture-window.sh ├── open-from-clipboard.sh ├── open-history.sh ├── pin-from-clipboard.sh ├── record-screen.sh ├── restore-recently-closed.sh ├── scrolling-capture.sh ├── self-timer.sh └── toggle-desktop-icons.sh /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.alfredworkflow 2 | *~ 3 | .*~ 4 | wfbuild 5 | desktop-icons-visible 6 | -------------------------------------------------------------------------------- /1D8804FD-F9E6-457D-83D8-E3AEA432BA1E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/1D8804FD-F9E6-457D-83D8-E3AEA432BA1E.png -------------------------------------------------------------------------------- /1FE4B488-8FF6-4E08-8781-B53953275FAE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/1FE4B488-8FF6-4E08-8781-B53953275FAE.png -------------------------------------------------------------------------------- /83D7B363-3BEB-49FF-94CA-CB1246A30F1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/83D7B363-3BEB-49FF-94CA-CB1246A30F1D.png -------------------------------------------------------------------------------- /A7DE7A70-B3E2-4531-9509-01F3BF4FE2DC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/A7DE7A70-B3E2-4531-9509-01F3BF4FE2DC.png -------------------------------------------------------------------------------- /B0B38CAD-6949-4F11-9B8E-B53F7538F5EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/B0B38CAD-6949-4F11-9B8E-B53F7538F5EB.png -------------------------------------------------------------------------------- /E7E3A0BD-6513-455B-A6B5-0AB88A9C96B1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/E7E3A0BD-6513-455B-A6B5-0AB88A9C96B1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/README.md -------------------------------------------------------------------------------- /desktop-icons-visible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/desktop-icons-visible.swift -------------------------------------------------------------------------------- /firstrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/firstrun.sh -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icon.png -------------------------------------------------------------------------------- /icons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons.sketch -------------------------------------------------------------------------------- /icons/all-in-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/all-in-one.png -------------------------------------------------------------------------------- /icons/annotate-clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/annotate-clipboard.png -------------------------------------------------------------------------------- /icons/annotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/annotate.png -------------------------------------------------------------------------------- /icons/capture-area-and-annotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-area-and-annotate.png -------------------------------------------------------------------------------- /icons/capture-area-and-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-area-and-pin.png -------------------------------------------------------------------------------- /icons/capture-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-area.png -------------------------------------------------------------------------------- /icons/capture-fullscreen-and-annotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-fullscreen-and-annotate.png -------------------------------------------------------------------------------- /icons/capture-fullscreen-and-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-fullscreen-and-pin.png -------------------------------------------------------------------------------- /icons/capture-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-fullscreen.png -------------------------------------------------------------------------------- /icons/capture-previous-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-previous-area.png -------------------------------------------------------------------------------- /icons/capture-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-text.png -------------------------------------------------------------------------------- /icons/capture-window-and-annotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-window-and-annotate.png -------------------------------------------------------------------------------- /icons/capture-window-and-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-window-and-pin.png -------------------------------------------------------------------------------- /icons/capture-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/capture-window.png -------------------------------------------------------------------------------- /icons/hide-desktop-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/hide-desktop-icons.png -------------------------------------------------------------------------------- /icons/open-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/open-history.png -------------------------------------------------------------------------------- /icons/pin-clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/pin-clipboard.png -------------------------------------------------------------------------------- /icons/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/pin.png -------------------------------------------------------------------------------- /icons/record-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/record-screen.png -------------------------------------------------------------------------------- /icons/restore-recently-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/restore-recently-closed.png -------------------------------------------------------------------------------- /icons/scrolling-capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/scrolling-capture.png -------------------------------------------------------------------------------- /icons/self-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/self-timer.png -------------------------------------------------------------------------------- /icons/show-desktop-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/icons/show-desktop-icons.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/info.plist -------------------------------------------------------------------------------- /items.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/items.sh -------------------------------------------------------------------------------- /pngpaste: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/pngpaste -------------------------------------------------------------------------------- /screenshots/actions-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/screenshots/actions-list-1.png -------------------------------------------------------------------------------- /screenshots/actions-list-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/screenshots/actions-list-2.png -------------------------------------------------------------------------------- /screenshots/clipboard-actions-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/screenshots/clipboard-actions-list.png -------------------------------------------------------------------------------- /screenshots/file-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/screenshots/file-actions.png -------------------------------------------------------------------------------- /scripts/all-in-one.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://all-in-one" 4 | -------------------------------------------------------------------------------- /scripts/capture-area-and-annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/capture-area-and-annotate.sh -------------------------------------------------------------------------------- /scripts/capture-area-and-pin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/capture-area-and-pin.sh -------------------------------------------------------------------------------- /scripts/capture-area.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://capture-area" 4 | -------------------------------------------------------------------------------- /scripts/capture-fullscreen-and-annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/capture-fullscreen-and-annotate.sh -------------------------------------------------------------------------------- /scripts/capture-fullscreen-and-pin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/capture-fullscreen-and-pin.sh -------------------------------------------------------------------------------- /scripts/capture-fullscreen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://capture-fullscreen" 4 | -------------------------------------------------------------------------------- /scripts/capture-previous-area.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/capture-previous-area.sh -------------------------------------------------------------------------------- /scripts/capture-text.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://capture-text" 4 | -------------------------------------------------------------------------------- /scripts/capture-window-and-annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/capture-window-and-annotate.sh -------------------------------------------------------------------------------- /scripts/capture-window-and-pin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/capture-window-and-pin.sh -------------------------------------------------------------------------------- /scripts/capture-window.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://capture-window" 4 | -------------------------------------------------------------------------------- /scripts/open-from-clipboard.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://open-from-clipboard" 4 | -------------------------------------------------------------------------------- /scripts/open-history.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://open-history" 4 | -------------------------------------------------------------------------------- /scripts/pin-from-clipboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/pin-from-clipboard.sh -------------------------------------------------------------------------------- /scripts/record-screen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://record-screen" 4 | -------------------------------------------------------------------------------- /scripts/restore-recently-closed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/restore-recently-closed.sh -------------------------------------------------------------------------------- /scripts/scrolling-capture.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://scrolling-capture" 4 | -------------------------------------------------------------------------------- /scripts/self-timer.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | open -g "cleanshot://self-timer" 4 | -------------------------------------------------------------------------------- /scripts/toggle-desktop-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-pennyworth/alfred-cleanshot/HEAD/scripts/toggle-desktop-icons.sh --------------------------------------------------------------------------------