├── Disk space.alfredworkflow ├── Disk space.json ├── Google Translate.alfredworkflow ├── Google Translate.json ├── LICENSE ├── Now and Then.alfredworkflow ├── Now and Then.json ├── README.md ├── Refresh Finder.alfredworkflow ├── Refresh Finder.json ├── Sleep Display.alfredworkflow ├── Sleep Display.json ├── Tag with Tagger.alfredworkflow ├── Tag with Tagger.json ├── Tagg’d.alfredworkflow ├── Tagg’d.json └── docs ├── disk-space-feedback.png ├── google-translate-feedback.png ├── refresh-finder-workflow.png ├── tag-with-tagger-window.png ├── tagged-feedback.png ├── web-bookmarks-feedback.png └── web-history-feedback.png /Disk space.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/Disk space.alfredworkflow -------------------------------------------------------------------------------- /Disk space.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.00, 3 | "download_url": "https://github.com/kopischke/alfred-workflows/raw/master/Disk%20space.alfredworkflow", 4 | "description": "First public release." 5 | } 6 | -------------------------------------------------------------------------------- /Google Translate.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/Google Translate.alfredworkflow -------------------------------------------------------------------------------- /Google Translate.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.11, 3 | "download_url": "https://github.com/kopischke/alfred-workflows/raw/master/Google%20Translate.alfredworkflow", 4 | "description": "Fix handling of multi-word translations." 5 | } 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | -------------------------------------------------------------------------------- /Now and Then.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/Now and Then.alfredworkflow -------------------------------------------------------------------------------- /Now and Then.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.01, 3 | "download_url": "https://github.com/kopischke/alfred-workflows/raw/master/Now%20and%20Then.alfredworkflow", 4 | "description": "Update for final Mavericks tagging scheme." 5 | } 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Collected Alfred 2 workflows 2 | 3 | Simple workflows for [Alfred version 2][alfred] that do not merit their own repository. Note you need the [Alfred Powerpack][alfred-powerpack] to enable workflows. 4 | 5 | ## Workflows included 6 | 7 | ### Refresh Finder 8 | 9 | A straightforward port of Söderhavet’s [*Refresh Finder*][refresh-finder] utility to Alfred. Use a hotkey or the “refresh” keyword to force Finder to refresh the file listing in the frontmost window. Alternatively, all Finder windows can be refreshed (via another hotkey, or by holding down `alt` when actioning the keyword). 10 | 11 | ![Refresh Finder workflow overview](docs/refresh-finder-workflow.png) 12 | 13 | ### Tag with Tagger 14 | 15 | Ali Rantakari’s [*Tagger.app*][tagger] is a fantastic (and free) way to tag files according to the [OpenMeta standard][openmeta]. This workflow adds a hotkey to trigger it, and a file action for Alfred’s file browser (using the `tag` keyword). 16 | 17 | ![Tag with Tagger screenshot of tag window](docs/tag-with-tagger-window.png) 18 | 19 | ### Tagg’d 20 | 21 | A simple file filter companion to the tagging workflow above. Will search [OpenMeta][openmeta] tags, application specific tags (as long as they are stored as Spotlight keywords – `kmdItemKeywords` to the savvy) and Mavericks native tags. 22 | 23 | ![Tag query feedback display](docs/tagged-feedback.png) 24 | 25 | ### Disk space 26 | 27 | An expanded version of [Florian Pellet’s disk space workflow][pellet-workflow-diskpace]. It has a friendlier display (including correct drive icons), handles volumes with spaces in their names, displays the correct name of the system drive and offers actions on the drives (Reveal in Finder by default, Browse in Alfred with the `fn` modifier). 28 | 29 | ![Disk space feedback display](docs/disk-space-feedback.png) 30 | 31 | ### Google Translate 32 | 33 | A version of [Florian Pellet’s Translation workflow][pellet-workflow-translate] that handles international characters correctly, both as input and output, treats multi-word queries as phrases instead of as separate queries, and adds a Paste in foreground application action (with the `Cmd` modifier). It’s also more easily extensible to other languages as the logic is in a central script: adding another language is a simple matter of adding a script filter running 34 | 35 | ./translate '' '' "{query}" 36 | 37 | in `bash` (double quotes and escape variables need to be escaped). 38 | 39 | ![Google translate feedback display](docs/google-translate-feedback.png) 40 | 41 | ### Now and Then (the web) 42 | 43 | A simple file filter to search all bookmark (keyword `web`) and web browsing history (keyword `hist`) files accessible to Spotlight. Currently searches the files generated by Safari and [Pinboard.in][pinboard] / [Delicious][delicious] accounts registered with [*Delish*][delish] and [*Webbla*][webbla]. If you’d like it to support other formats, please attach an example of a pertinent bookmark and / or web history file to [this issue](../../issues/1). Notes: 44 | 45 | * History search searches the URL, bookmark search ignores it. 46 | * Delicious and Pinboard tags are searched (*Webbla* needs [OpenMeta][openmeta] enabled; *Delish* works out of the box). 47 | * JavaScript bookmarklets are excluded from bookmarks searches. 48 | 49 | ![Web bookmarks query feedback display](docs/web-bookmarks-feedback.png) 50 | 51 | ![Web history query feedback display](docs/web-history-feedback.png) 52 | 53 | ### Sleep Display 54 | 55 | A mini workflow that does what it says on the tin: sleeping all your displays immediately. Useful for keyboard jockeys whose Mac does not have an Eject key (you will have to set your own hotkey: Macs with an Eject key have the system shortcut *Ctrl+Shift+Eject*). Mavericks or better, as it uses a version of [Peter Bakhirev’s `displayctl`][displayctl] utility compiled for OS X 10.9. 56 | 57 | ## Installing and updating 58 | 59 | To install, download the `.alfredworkflow` files from the repo. Updates to new versions can be automated via [Alleyoop][alleyoop]: [install Alleyoop][alleyoop-download] and do `oop`. 60 | 61 | ## Bugs and support 62 | 63 | Please use [the repository’s issues section][issues] to check for known bugs or report new ones. 64 | 65 | ## License 66 | 67 | All workflows licensed under the [WTFPL][wtfpl]. See [LICENSE](./LICENSE) for the full license text. 68 | 69 | [alfred]: http://www.alfredapp.com 70 | [alfred-powerpack]: http://www.alfredapp.com/powerpack/ 71 | [alleyoop]: http://alfred.daniel.sh 72 | [alleyoop-download]:http://alfred.daniel.sh/Workflows/Alleyoop.alfredworkflow 73 | [delicious]: http://www.delicious.com/ 74 | [delish]: http://pinepointsoftware.com/delish/ 75 | [displayctl]: https://github.com/byteclub/os-x-sleep-wake-display 76 | [issues]: ../../issues 77 | [openmeta]: http://code.google.com/p/openmeta/ 78 | [pellet-workflow-diskpace]: http://www.alfredforum.com/topic/678-check-available-disk-space/?hl=%2Bdisk+%2Bspace 79 | [pellet-workflow-translate]: http://www.alfredforum.com/topic/120-google-translate-workflow/ 80 | [pinboard]: http://pinboard.in/ 81 | [refresh-finder]: http://soderhavet.com/refresh/refresh-finder/ 82 | [tagger]: http://hasseg.org/tagger/ 83 | [webbla]: http://www.celmaro.com/webbla/ 84 | [wtfpl]: http://www.wtfpl.net/ 85 | -------------------------------------------------------------------------------- /Refresh Finder.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/Refresh Finder.alfredworkflow -------------------------------------------------------------------------------- /Refresh Finder.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.00, 3 | "download_url": "https://github.com/kopischke/alfred-workflows/raw/master/Refresh%20Finder.alfredworkflow", 4 | "description": "First public release." 5 | } 6 | -------------------------------------------------------------------------------- /Sleep Display.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/Sleep Display.alfredworkflow -------------------------------------------------------------------------------- /Sleep Display.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.01, 3 | "download_url": "https://github.com/kopischke/alfred-workflows/raw/master/Sleep%20Display.alfredworkflow", 4 | "description": "Fixed hotkey bringing up Alfred." 5 | } 6 | -------------------------------------------------------------------------------- /Tag with Tagger.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/Tag with Tagger.alfredworkflow -------------------------------------------------------------------------------- /Tag with Tagger.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.00, 3 | "download_url": "https://github.com/kopischke/alfred-workflows/raw/master/Tag%20with%20Tagger.alfredworkflow", 4 | "description": "First public release." 5 | } 6 | -------------------------------------------------------------------------------- /Tagg’d.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/Tagg’d.alfredworkflow -------------------------------------------------------------------------------- /Tagg’d.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.01, 3 | "download_url": "https://github.com/kopischke/alfred-workflows/raw/master/Tagg%E2%80%99d.alfredworkflow", 4 | "description": "Update for final Mavericks tagging scheme." 5 | } 6 | -------------------------------------------------------------------------------- /docs/disk-space-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/docs/disk-space-feedback.png -------------------------------------------------------------------------------- /docs/google-translate-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/docs/google-translate-feedback.png -------------------------------------------------------------------------------- /docs/refresh-finder-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/docs/refresh-finder-workflow.png -------------------------------------------------------------------------------- /docs/tag-with-tagger-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/docs/tag-with-tagger-window.png -------------------------------------------------------------------------------- /docs/tagged-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/docs/tagged-feedback.png -------------------------------------------------------------------------------- /docs/web-bookmarks-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/docs/web-bookmarks-feedback.png -------------------------------------------------------------------------------- /docs/web-history-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kopischke/alfred-workflows/1dc8a66e6990702e2be795e4adb37955e17e26b9/docs/web-history-feedback.png --------------------------------------------------------------------------------