-
-
Save mofelee/4011970ff127101327ee6c2bb85fa4b4 to your computer and use it in GitHub Desktop.
Template for Alfred App Script Filter JSON output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"fruit": "banana", | |
"vegetable": "carrot" | |
}, | |
"rerun" : 1, | |
"items": [ | |
{ | |
"uid": "desktop", | |
"type": "file", | |
"title": "Desktop", | |
"subtitle": "~/Desktop", | |
"arg": "~/Desktop", | |
"autocomplete": "Desktop", | |
"valid": true, | |
"match": "a match string", | |
"mods": { | |
"alt": { | |
"valid": true, | |
"arg": "alfredapp.com/powerpack", | |
"subtitle": "https://www.alfredapp.com/powerpack/", | |
"variables": { | |
"item_var": "hello" | |
} | |
}, | |
"cmd": { | |
"valid": true, | |
"arg": "alfredapp.com/powerpack/buy/", | |
"subtitle": "https://www.alfredapp.com/powerpack/buy/", | |
"variables": { | |
"item_var": "alternate value" | |
} | |
}, | |
}, | |
"icon": { | |
"type": "fileicon", | |
"path": "~/Desktop" | |
}, | |
"text": { | |
"copy": "https://www.alfredapp.com/ (text here to copy)", | |
"largetype": "https://www.alfredapp.com/ (text here for large type)" | |
}, | |
"quicklookurl": "https://www.alfredapp.com/", | |
"variables": { | |
"name": "values" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment