Workflows
Workflows copied to clipboard
Alfred Workflows Utility Class
Is it possible for this workflow to support Alfred 3?
Composer
Thanks for your script. I used it to display results of a search in a locally synced Pinboard database. Would you mind, adding the repository to [Composer](https://getcomposer.org/)/[Packagist](https://packagist.org/)? Altought it has...
$array = true argument doesn't work as expected
This pull request is done to avoid as much as possible the use of exec() in Workflows constructor. When providing bundled when creating Workflows, I get good improvements. I've created...
# Alfred 2.3 support ## Notable changes: `$sub` argument of `result()` now accepts an associative array of mod values. For example: ``` php array( 'Default Subtitle', 'alt' => 'Alternate subtitle',...
Maybe this will become handy for someone else than just me.
Reading plist file with "defaults read" command returns an empty array if the key is not found. The test on the returned value was wrong.
Hello. I added `encoding="UTF-8` to the xml tag. Alfred's output is UTF-8, so I think it makes sense to feed it UTF-8 xml. The practical effect is that unicode characters...
There's a bug in this logic in `workflows.php`: ``` php $out = file_get_contents( $a ); if ( !is_null( json_decode( $out ) ) && !$array ): $out = json_decode( $out );...