Alfred Workflows
in The Archive
Is there any chance someone could port over some of the Keyboard Maestro macros into Alfred? I've downloaded the one workflow that's already been posted which is very useful but would like it if someone could post a port of the macro which allows you to search all your links and automatically paste the selected link into the file. I've been trying to figure it out for hours but I think it's beyond my current capabilities.
Howdy, Stranger!
Categories
- 3K All Categories
- 153 Research & Reading
- 695 The Zettelkasten Method
- 10 Knowledge Work
- 100 Writing
- 467 Software & Gadgets
- 154 Workflows
- 731 The Archive
- 15 Plug-In Showcase
- 88 Resolved Issues
- 225 Projects Logs and Journals
- 83 Project: Zettelkasten.de
- 53 Critique my Zettel
- 173 Random
- 374 Introduce Yourselves!
Comments
This is the code that works for the similar tags function:
cd ~/Dropbox/zettelkasten query=$1 result=$(egrep -ohs '^Tags:.*$' -- * | egrep -ohs '#[A-Za-z0-9_\-]+' | egrep -hs "$query" | sort | uniq | sed -e 's/.*/{"title":"&","arg":"&"},/' -e '1s/^/{"items":[/' -e '$s/$/]}/') if [ -n "$result" ] then echo $result else echo "{\"items\":[{\"title\":\"Create Tag: #$query\",\"arg\":\"#$query\"}]}" fiAnd this is the code that works for the keyboard maestro version of what I want to achieve:
@rcarr see: https://github.com/pryley/alfred-the-archive
Input is welcome.